Skip to content

Commit

Permalink
feat: add k8s pod name as quick filter for logs (#6694)
Browse files Browse the repository at this point in the history
  • Loading branch information
vikrantgupta25 authored Dec 21, 2024
1 parent bef6cc9 commit 5d9a257
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions frontend/src/pages/LogsExplorer/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
];

0 comments on commit 5d9a257

Please sign in to comment.