mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[APM] kuery is not applied to latency chart (#94707)
This commit is contained in:
parent
d71e1b47af
commit
4d27af99c4
1 changed files with 3 additions and 0 deletions
|
@ -183,6 +183,7 @@ export async function getLatencyPeriods({
|
|||
latencyAggregationType,
|
||||
comparisonStart,
|
||||
comparisonEnd,
|
||||
kuery,
|
||||
}: {
|
||||
serviceName: string;
|
||||
transactionType: string | undefined;
|
||||
|
@ -192,6 +193,7 @@ export async function getLatencyPeriods({
|
|||
latencyAggregationType: LatencyAggregationType;
|
||||
comparisonStart?: number;
|
||||
comparisonEnd?: number;
|
||||
kuery?: string;
|
||||
}) {
|
||||
const { start, end } = setup;
|
||||
const options = {
|
||||
|
@ -200,6 +202,7 @@ export async function getLatencyPeriods({
|
|||
transactionName,
|
||||
setup,
|
||||
searchAggregatedTransactions,
|
||||
kuery,
|
||||
};
|
||||
|
||||
const currentPeriodPromise = getLatencyTimeseries({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue