feat: add k8s pod name as quick filter for logs (#6694)

This commit is contained in:
Vikrant Gupta 2024-12-21 13:19:20 +05:30 committed by GitHub
parent bef6cc945a
commit 5d9a2571df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,4 +110,16 @@ export const LogsQuickFiltersConfig: IQuickFiltersConfig[] = [
},
defaultOpen: false,
},
{
type: FiltersType.CHECKBOX,
title: 'K8s Pod Name',
attributeKey: {
key: 'k8s.pod.name',
dataType: DataTypes.String,
type: 'resource',
isColumn: false,
isJSON: false,
},
defaultOpen: false,
},
];