Skip to content

Commit 29fb707

Browse files
committed
feat: Display alert count on deployments table
1 parent d5cfc9f commit 29fb707

File tree

4 files changed

+66
-5
lines changed

4 files changed

+66
-5
lines changed

src/pages/Workloads/tabs/Deployments/DeploymentExpandedRow.tsx

+24-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import { SceneFlexLayout } from "@grafana/scenes";
1+
import { SceneFlexItem, SceneFlexLayout } from "@grafana/scenes";
22
import { getPodsScene } from "../Pods/Pods";
33
import { LabelFilters } from "common/queryHelpers";
44
import { TableRow } from "./types";
5+
import { AlertsTable } from "components/AlertsTable";
56

67
export function buildExpandedRowScene(row: TableRow) {
78

@@ -21,10 +22,30 @@ export function buildExpandedRowScene(row: TableRow) {
2122

2223
return new SceneFlexLayout({
2324
key: `${row.namespace}/${row.deployment}`,
25+
direction: 'column',
2426
width: '100%',
25-
height: 500,
2627
children: [
27-
getPodsScene(staticLabelFilters, false, false)
28+
new SceneFlexLayout({
29+
direction: 'row',
30+
height: 300,
31+
children: [
32+
getPodsScene(staticLabelFilters, false, false)
33+
]
34+
}),
35+
new SceneFlexLayout({
36+
direction: 'row',
37+
children: [
38+
new SceneFlexItem({
39+
body: AlertsTable([
40+
{
41+
label: 'deployment',
42+
op: '=',
43+
value: row.deployment
44+
}
45+
], false, false)
46+
})
47+
]
48+
}),
2849
],
2950
});
3051
}

src/pages/Workloads/tabs/Deployments/Deployments.tsx

+16-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
SceneVariableSet,
88
} from '@grafana/scenes';
99
import { ReplicasCell } from 'pages/Workloads/components/ReplicasCell';
10-
import { getSeriesValue } from 'common/seriesHelpers';
10+
import { getAllSeries, getSeriesValue } from 'common/seriesHelpers';
1111
import { buildExpandedRowScene } from './DeploymentExpandedRow';
1212
import { createNamespaceVariable } from 'common/variableHelpers';
1313
import { TableRow } from './types';
@@ -52,6 +52,19 @@ const columns: Array<Column<TableRow>> = [
5252
local: true,
5353
}
5454
},
55+
{
56+
id: 'alerts',
57+
header: 'ALERTS',
58+
sortingConfig: {
59+
enabled: true,
60+
local: false,
61+
type: 'value'
62+
},
63+
accessor: (row: TableRow) => row.alerts ? row.alerts.length : 0,
64+
cellProps: {
65+
// color: determineAlertsColor
66+
}
67+
},
5568
{
5669
id: 'replicas',
5770
header: 'REPLICAS',
@@ -78,6 +91,8 @@ function asyncRowMapper(row: TableRow, asyncRowData: any) {
7891
total,
7992
ready
8093
}
94+
95+
row.alerts = getAllSeries(asyncRowData, 'alerts', serieMatcherPredicate(row))
8196
}
8297

8398
function createRowId(row: TableRow) {

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

+18-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,31 @@ import { TableRow } from "./types";
55
import { QueryBuilder, ColumnSortingConfig } from "components/AsyncTable";
66
import { SortingState } from "common/sortingHelpers";
77

8+
function createAlertsQuery(cluster?: string, deployments?: string) {
9+
return `
10+
ALERTS{
11+
cluster="${cluster}",
12+
${deployments ? `deployment=~"${deployments}",` : ''}
13+
alertstate="firing",
14+
}
15+
* ignoring(alertstate) group_right(alertstate) ALERTS_FOR_STATE{
16+
cluster="${cluster}",
17+
${deployments ? `deployment=~"${deployments}",` : ''}
18+
}
19+
`
20+
}
21+
822
function createRowQueries(rows: TableRow[], sceneVariables: SceneVariables) {
923

1024
const deployments = rows.map(row => row.deployment).join('|');
1125
const cluster = resolveVariable(sceneVariables, 'cluster');
1226

1327
return [
1428
{
15-
29+
refId: 'alerts',
30+
expr: createAlertsQuery(cluster?.toString(), deployments),
31+
instant: true,
32+
format: 'table'
1633
},
1734
{
1835
refId: 'replicas',

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

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2+
export interface DeploymentAlert {
3+
deployment: string;
4+
alertname: string;
5+
severity: string;
6+
}
7+
18
export interface TableRow {
29
cluster: string;
310
deployment: string;
@@ -8,4 +15,5 @@ export interface TableRow {
815
ready: number;
916
total: number;
1017
}
18+
alerts: DeploymentAlert[];
1119
}

0 commit comments

Comments
 (0)