mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[APM] Kql Search Bar suggests values outside the selected time range (#91918)
This commit is contained in:
parent
f8fd08fbcd
commit
1fa742d0ce
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,7 @@ import { withApmSpan } from '../../utils/with_apm_span';
|
|||
|
||||
export interface IndexPatternTitleAndFields {
|
||||
title: string;
|
||||
timeFieldName: string;
|
||||
fields: FieldDescriptor[];
|
||||
}
|
||||
|
||||
|
@ -52,6 +53,7 @@ export const getDynamicIndexPattern = ({
|
|||
|
||||
const indexPattern: IndexPatternTitleAndFields = {
|
||||
fields,
|
||||
timeFieldName: '@timestamp',
|
||||
title: indexPatternTitle,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue