fix agg filter for sibling pipeline aggs (#125227) (#125267)

(cherry picked from commit 7994f83dc5)

Co-authored-by: Joe Reuter <johannes.reuter@elastic.co>
This commit is contained in:
Kibana Machine 2022-02-10 12:41:00 -05:00 committed by GitHub
parent a04a5f12e8
commit d150f809a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ const metricAggFilter: string[] = [
'!filtered_metric',
'!single_percentile',
];
const bucketAggFilter: string[] = [];
const bucketAggFilter: string[] = ['!filter', '!sampler', '!diversified_sampler', '!multi_terms'];
export const siblingPipelineType = i18n.translate(
'data.search.aggs.metrics.siblingPipelineAggregationsSubtypeTitle',