Skip to content

Commit 12280b8

Browse files
committed
refactor: Use querybuilder for deployment queries and implement sorting for deployments table
1 parent 6092e25 commit 12280b8

File tree

4 files changed

+108
-56
lines changed

4 files changed

+108
-56
lines changed

src/metrics/metrics.ts

+7
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,13 @@ export const Metrics = {
207207
}
208208
},
209209
// Deployments
210+
kubeDeploymentCreated: {
211+
name: 'kube_deployment_created',
212+
labels:{
213+
namespace: 'namespace',
214+
deployment: 'deployment',
215+
}
216+
},
210217
kubeDeploymentStatusReplicas: {
211218
name: 'kube_deployment_status_replicas',
212219
labels:{

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

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export function buildExpandedRowScene(row: TableRow) {
2727
children: [
2828
new SceneFlexLayout({
2929
direction: 'row',
30-
height: 300,
3130
children: [
3231
getPodsScene(staticLabelFilters, false, false)
3332
]

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ const columns: Array<Column<TableRow>> = [
2929
enabled: true,
3030
type: 'label',
3131
local: true,
32+
compare: (a: TableRow, b: TableRow, direction) => direction === 'asc' ? a.deployment.localeCompare(b.deployment) : b.deployment.localeCompare(a.deployment)
3233
}
3334
},
3435
{
@@ -42,6 +43,7 @@ const columns: Array<Column<TableRow>> = [
4243
enabled: true,
4344
type: 'label',
4445
local: true,
46+
compare: (a: TableRow, b: TableRow, direction) => direction === 'asc' ? a.namespace.localeCompare(b.namespace) : b.namespace.localeCompare(a.namespace)
4547
}
4648
},
4749
{
@@ -65,7 +67,7 @@ const columns: Array<Column<TableRow>> = [
6567
sortingConfig: {
6668
enabled: true,
6769
type: 'value',
68-
local: true,
70+
local: false,
6971
}
7072
}
7173
]
@@ -74,8 +76,6 @@ const serieMatcherPredicate = (row: TableRow) => (value: any) => value.deploymen
7476

7577
function asyncRowMapper(row: TableRow, asyncRowData: any) {
7678

77-
row.deployment = row.owner_name
78-
7979
const total = getSeriesValue(asyncRowData, 'replicas', serieMatcherPredicate(row))
8080
const ready = getSeriesValue(asyncRowData, 'replicas_ready', serieMatcherPredicate(row))
8181

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

+98-52
Original file line numberDiff line numberDiff line change
@@ -4,70 +4,76 @@ import { Metrics } from "metrics/metrics";
44
import { TableRow } from "./types";
55
import { QueryBuilder, ColumnSortingConfig } from "components/AsyncTable";
66
import { SortingState } from "common/sortingHelpers";
7+
import { MatchOperators, OperatorAndValue, PromQL, PromQLExpression } from "common/promql";
78

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-
}
9+
function createAlertsQuery(cluster: string, additionalLabels: Record<string, OperatorAndValue>) {
2110

22-
function createReplicasQuery(cluster?: string, deployments?: string) {
23-
return `
24-
max(
25-
${Metrics.kubeDeploymentStatusReplicas.name}{
26-
${Metrics.kubeDeploymentStatusReplicas.labels.deployment}=~"${deployments}",
27-
cluster="${cluster}"
28-
}
29-
) by (
30-
${Metrics.kubeDeploymentStatusReplicas.labels.deployment},
31-
${Metrics.kubeDeploymentStatusReplicas.labels.namespace}
11+
return PromQL.metric('ALERTS')
12+
.withLabelEquals('cluster', cluster)
13+
.withLabels(additionalLabels)
14+
.withLabelEquals('alertstate', 'firing')
15+
.multiply()
16+
.ignoring(['alertstate'])
17+
.groupRight(
18+
['alertstate'],
19+
PromQL.metric('ALERTS_FOR_STATE')
20+
.withLabelEquals('cluster', cluster)
21+
.withLabels(additionalLabels)
3222
)
33-
`
3423
}
3524

36-
function createReplicasReadyQuery(cluster?: string, deployments?: string) {
37-
return `
38-
max(
39-
${Metrics.kubeDeploymentStatusReplicasReady.name}{
40-
${Metrics.kubeDeploymentStatusReplicasReady.labels.deployment}=~"${deployments}",
41-
cluster="${cluster}"
42-
}
43-
) by (
44-
${Metrics.kubeDeploymentStatusReplicasReady.labels.deployment},
45-
${Metrics.kubeDeploymentStatusReplicasReady.labels.namespace}
46-
)
47-
`
25+
function createReplicasQuery(cluster: string, additionalLabels: Record<string, OperatorAndValue>) {
26+
27+
return PromQL.max(
28+
PromQL.metric(Metrics.kubeDeploymentStatusReplicas.name)
29+
.withLabels(additionalLabels)
30+
.withLabelEquals('cluster', cluster)
31+
).by(
32+
Metrics.kubeDeploymentStatusReplicas.labels.deployment,
33+
Metrics.kubeDeploymentStatusReplicas.labels.namespace
34+
)
35+
}
36+
37+
function createReplicasReadyQuery(cluster: string, deployments: string) {
38+
39+
return PromQL.max(
40+
PromQL.metric(Metrics.kubeDeploymentStatusReplicasReady.name)
41+
.withLabelMatches(Metrics.kubeDeploymentStatusReplicasReady.labels.deployment, deployments)
42+
.withLabelEquals('cluster', cluster)
43+
).by(
44+
Metrics.kubeDeploymentStatusReplicasReady.labels.deployment,
45+
Metrics.kubeDeploymentStatusReplicasReady.labels.namespace
46+
)
4847
}
4948

5049
function createRowQueries(rows: TableRow[], sceneVariables: SceneVariables) {
5150

5251
const deployments = rows.map(row => row.deployment).join('|');
5352
const cluster = resolveVariable(sceneVariables, 'cluster');
5453

54+
const additionalLabels = {
55+
'deployment': {
56+
operator: MatchOperators.MATCHES,
57+
value: deployments
58+
}
59+
}
60+
5561
return [
5662
{
5763
refId: 'alerts',
58-
expr: createAlertsQuery(cluster?.toString(), deployments),
64+
expr: createAlertsQuery(cluster?.toString()!, additionalLabels).stringify(),
5965
instant: true,
6066
format: 'table'
6167
},
6268
{
6369
refId: 'replicas',
64-
expr: createReplicasQuery(cluster?.toString(), deployments),
70+
expr: createReplicasQuery(cluster?.toString()!, additionalLabels).stringify(),
6571
instant: true,
6672
format: 'table'
6773
},
6874
{
6975
refId: 'replicas_ready',
70-
expr: createReplicasReadyQuery(cluster?.toString(), deployments),
76+
expr: createReplicasReadyQuery(cluster?.toString()!, deployments).stringify(),
7177
instant: true,
7278
format: 'table'
7379
},
@@ -77,18 +83,58 @@ function createRowQueries(rows: TableRow[], sceneVariables: SceneVariables) {
7783
export class DeploymentQueryBuilder implements QueryBuilder<TableRow> {
7884
rootQueryBuilder(variables: SceneVariableSet | SceneVariables, sorting: SortingState, sortingConfig?: ColumnSortingConfig<TableRow>) {
7985

80-
const query =
81-
`group(
82-
${Metrics.kubeReplicasetOwner.name}{
83-
cluster="$cluster",
84-
${Metrics.kubeReplicasetOwner.labels.namespace}=~"$namespace",
85-
${Metrics.kubeReplicasetOwner.labels.ownerName}=~".*$search.*",
86-
${Metrics.kubeReplicasetOwner.labels.ownerKind}="Deployment"
87-
}
88-
) by (
89-
${Metrics.kubeReplicasetOwner.labels.ownerName},
90-
${Metrics.kubeReplicasetOwner.labels.namespace}
91-
)`
86+
const baseQuery = PromQL.group(
87+
PromQL.metric(Metrics.kubeDeploymentCreated.name)
88+
.withLabelEquals('cluster', '$cluster')
89+
.withLabelMatches(Metrics.kubeDeploymentCreated.labels.namespace, '$namespace')
90+
.withLabelMatches(Metrics.kubeDeploymentCreated.labels.deployment, '.*$search.*')
91+
).by(
92+
Metrics.kubeDeploymentCreated.labels.deployment,
93+
Metrics.kubeDeploymentCreated.labels.namespace
94+
)
95+
96+
const remoteSort = sortingConfig && sortingConfig.local === false
97+
98+
let finalQuery: PromQLExpression = baseQuery;
99+
if (remoteSort) {
100+
switch (sorting.columnId) {
101+
case 'alerts':
102+
finalQuery = PromQL.sort(
103+
sorting.direction,
104+
baseQuery
105+
.multiply()
106+
.on(['namespace', 'deployment'])
107+
.groupRight(
108+
[],
109+
PromQL.count(
110+
createAlertsQuery('$cluster', {
111+
'deployment': {
112+
operator: MatchOperators.NOT_EQUALS,
113+
value: ''
114+
}
115+
})
116+
).by('namespace', 'deployment')
117+
).or(
118+
baseQuery.multiply().withScalar(0)
119+
)
120+
)
121+
break;
122+
case 'replicas':
123+
finalQuery = PromQL.sort(
124+
sorting.direction,
125+
baseQuery
126+
.multiply()
127+
.on(['namespace', 'deployment'])
128+
.groupRight(
129+
[],
130+
createReplicasQuery('$cluster', {})
131+
).or(
132+
baseQuery.multiply().withScalar(0)
133+
)
134+
)
135+
break;
136+
}
137+
}
92138

93139
return new SceneQueryRunner({
94140
datasource: {
@@ -98,7 +144,7 @@ export class DeploymentQueryBuilder implements QueryBuilder<TableRow> {
98144
queries: [
99145
{
100146
refId: 'deployments',
101-
expr: query,
147+
expr: finalQuery.stringify(),
102148
instant: true,
103149
format: 'table'
104150
},

0 commit comments

Comments
 (0)