mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Profiling] Persist current kuery when linking to traces (#141596)
This commit is contained in:
parent
4b246b5f8e
commit
a4797ee433
1 changed files with 3 additions and 1 deletions
|
@ -84,7 +84,9 @@ export const SubChart: React.FC<SubChartProps> = ({
|
|||
},
|
||||
query: {
|
||||
...query,
|
||||
kuery: `${getFieldNameForTopNType(path.topNType)}:"${category}"`,
|
||||
kuery: `${query.kuery ? `(${query.kuery}) AND ` : ''}${getFieldNameForTopNType(
|
||||
path.topNType
|
||||
)}:"${category}"`,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue