mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[TSVB] Filter with scripted field doesn't work after migration to 7.13.1 (#115762)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
744530ecdb
commit
b2e2264a2f
2 changed files with 8 additions and 2 deletions
|
@ -36,7 +36,10 @@ export async function getSeriesData(
|
|||
fieldFormatService,
|
||||
} = services;
|
||||
|
||||
const panelIndex = await cachedIndexPatternFetcher(panel.index_pattern);
|
||||
const panelIndex = await cachedIndexPatternFetcher(
|
||||
panel.index_pattern,
|
||||
!panel.use_kibana_indexes
|
||||
);
|
||||
|
||||
const strategy = await searchStrategyRegistry.getViableStrategy(requestContext, req, panelIndex);
|
||||
|
||||
|
|
|
@ -31,7 +31,10 @@ export async function getTableData(
|
|||
panel: Panel,
|
||||
services: VisTypeTimeseriesRequestServices
|
||||
) {
|
||||
const panelIndex = await services.cachedIndexPatternFetcher(panel.index_pattern);
|
||||
const panelIndex = await services.cachedIndexPatternFetcher(
|
||||
panel.index_pattern,
|
||||
!panel.use_kibana_indexes
|
||||
);
|
||||
|
||||
const strategy = await services.searchStrategyRegistry.getViableStrategy(
|
||||
requestContext,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue