Skip to content

Commit 59816d9

Browse files
committed
feat: Add status and age columns for pods
1 parent 0d6a087 commit 59816d9

File tree

5 files changed

+93
-1
lines changed

5 files changed

+93
-1
lines changed

src/common/seriesHelpers.ts

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ export function getSeriesValue(asyncData: any, name: string, pred: (value: any)
1010
return val ? val[`Value #${name}`] : 0
1111
}
1212

13+
export function getSeriesLabelValue(asyncData: any, name: string, labelName: string, pred: (value: any) => boolean) {
14+
const val = getSeries(asyncData, name, pred)
15+
return val ? val[labelName] : []
16+
}
17+
1318
export function getAllSeries(asyncData: any, name: string, pred: (value: any) => boolean) {
1419
if (asyncData && asyncData.get(name)) {
1520
return asyncData.get(name).filter(pred)

src/metrics/metrics.ts

+15
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,21 @@ export const Metrics = {
2525
uid: 'uid',
2626
}
2727
},
28+
kubePodStatusPhase: {
29+
name: 'kube_pod_status_phase',
30+
labels:{
31+
namespace: 'namespace',
32+
pod: 'pod',
33+
phase: 'phase',
34+
}
35+
},
36+
kubePodCreated: {
37+
name: 'kube_pod_created',
38+
labels:{
39+
namespace: 'namespace',
40+
pod: 'pod',
41+
}
42+
},
2843
kubePodContainerInfo: {
2944
name: 'kube_pod_container_info',
3045
labels:{

src/pages/Workloads/tabs/Pods/Pods.tsx

+26-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/Workloads/tabs/Pods/Queries.ts

+45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/Workloads/tabs/Pods/types.ts

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)