diff --git a/x-pack/plugins/security_solution/public/common/components/authentication/helpers.tsx b/x-pack/plugins/security_solution/public/common/components/authentication/helpers.tsx index 488be2cac326f3..8426c38b73add5 100644 --- a/x-pack/plugins/security_solution/public/common/components/authentication/helpers.tsx +++ b/x-pack/plugins/security_solution/public/common/components/authentication/helpers.tsx @@ -97,6 +97,8 @@ const FAILURES_COLUMN: Columns = { operator: IS_OPERATOR, }, }} + isAggregatable={true} + fieldType={'keyword'} render={(dataProvider, _, snapshot) => snapshot.isDragging ? ( @@ -185,6 +187,8 @@ const LAST_FAILED_DESTINATION_COLUMN: Columns , + isAggregatable: true, + fieldType: 'ip', }), }; @@ -244,6 +248,8 @@ const SUCCESS_COLUMN: Columns = { operator: IS_OPERATOR, }, }} + isAggregatable={true} + fieldType={'keyword'} render={(dataProvider, _, snapshot) => snapshot.isDragging ? ( diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/indicator_details.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/indicator_details.tsx index f9438de2dbba59..ebfd869b73a34d 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/indicator_details.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/indicator_details.tsx @@ -52,6 +52,8 @@ export const IndicatorDetails: React.FC = ({ field={INDICATOR_MATCHED_TYPE} isDraggable={isDraggable} value={indicatorType} + isAggregatable={true} + fieldType={'keyword'} /> )} @@ -73,6 +75,8 @@ export const IndicatorDetails: React.FC = ({ field={FEED_NAME} isDraggable={isDraggable} value={feedName} + isAggregatable={true} + fieldType={'keyword'} /> @@ -90,6 +94,8 @@ export const IndicatorDetails: React.FC = ({ fieldName={INDICATOR_REFERENCE} isDraggable={isDraggable} value={indicatorReference} + isAggregatable={true} + fieldType={'keyword'} /> diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/match_details.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/match_details.tsx index 4a29bc677d810b..31df9dc26cd0c8 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/match_details.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/match_details.tsx @@ -44,6 +44,8 @@ export const MatchDetails: React.FC = ({ field={INDICATOR_MATCHED_FIELD} isDraggable={isDraggable} value={sourceField} + isAggregatable={true} + fieldType={'keyword'} /> @@ -62,6 +64,8 @@ export const MatchDetails: React.FC = ({ field={sourceField} isDraggable={isDraggable} value={sourceValue} + isAggregatable={true} + fieldType={'keyword'} />