From 946bce84ce0d491433324aa0988db57a720975b6 Mon Sep 17 00:00:00 2001 From: Andrew Goldstein Date: Fri, 17 Dec 2021 17:26:27 -0700 Subject: [PATCH] - updates the `IGNORED_ALERT_FILTERS` list in `x-pack/plugins/security_solution/public/common/components/top_n/helpers.ts` to include legacy alert fields: - `signal.rule.building_block_type` - `signal.rule.id` - `signal.rule.name` - `signal.rule.threat_mapping` - `signal.status` --- .../public/common/components/top_n/helpers.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x-pack/plugins/security_solution/public/common/components/top_n/helpers.ts b/x-pack/plugins/security_solution/public/common/components/top_n/helpers.ts index 084695a31404b..05742f607f936 100644 --- a/x-pack/plugins/security_solution/public/common/components/top_n/helpers.ts +++ b/x-pack/plugins/security_solution/public/common/components/top_n/helpers.ts @@ -175,6 +175,11 @@ export const IGNORED_ALERT_FILTERS = [ ALERT_START, ALERT_SYSTEM_STATUS, ALERT_UUID, + 'signal.rule.building_block_type', + 'signal.rule.id', + 'signal.rule.name', + 'signal.rule.threat_mapping', + 'signal.status', ]; /**