diff --git a/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/group_by.tsx b/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/group_by.tsx index 54047f42971f2..5a7eade17c7da 100644 --- a/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/group_by.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/components/group_by.tsx @@ -52,7 +52,7 @@ export function GroupBy({ options, onChange, fields, ...rest }: Props) { singleSelection={false} selectedOptions={selectedOptions} options={fields - .filter((f) => f.aggregatable && f.type === 'string') + .filter((f) => f.aggregatable && (f.type === 'string' || f.type === 'ip')) .map((f) => ({ label: f.name }))} onChange={handleChange} isClearable={true}