@@ -4,70 +4,76 @@ import { Metrics } from "metrics/metrics";
4
4
import { TableRow } from "./types" ;
5
5
import { QueryBuilder , ColumnSortingConfig } from "components/AsyncTable" ;
6
6
import { SortingState } from "common/sortingHelpers" ;
7
+ import { MatchOperators , OperatorAndValue , PromQL , PromQLExpression } from "common/promql" ;
7
8
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 > ) {
21
10
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 )
32
22
)
33
- `
34
23
}
35
24
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
+ )
48
47
}
49
48
50
49
function createRowQueries ( rows : TableRow [ ] , sceneVariables : SceneVariables ) {
51
50
52
51
const deployments = rows . map ( row => row . deployment ) . join ( '|' ) ;
53
52
const cluster = resolveVariable ( sceneVariables , 'cluster' ) ;
54
53
54
+ const additionalLabels = {
55
+ 'deployment' : {
56
+ operator : MatchOperators . MATCHES ,
57
+ value : deployments
58
+ }
59
+ }
60
+
55
61
return [
56
62
{
57
63
refId : 'alerts' ,
58
- expr : createAlertsQuery ( cluster ?. toString ( ) , deployments ) ,
64
+ expr : createAlertsQuery ( cluster ?. toString ( ) ! , additionalLabels ) . stringify ( ) ,
59
65
instant : true ,
60
66
format : 'table'
61
67
} ,
62
68
{
63
69
refId : 'replicas' ,
64
- expr : createReplicasQuery ( cluster ?. toString ( ) , deployments ) ,
70
+ expr : createReplicasQuery ( cluster ?. toString ( ) ! , additionalLabels ) . stringify ( ) ,
65
71
instant : true ,
66
72
format : 'table'
67
73
} ,
68
74
{
69
75
refId : 'replicas_ready' ,
70
- expr : createReplicasReadyQuery ( cluster ?. toString ( ) , deployments ) ,
76
+ expr : createReplicasReadyQuery ( cluster ?. toString ( ) ! , deployments ) . stringify ( ) ,
71
77
instant : true ,
72
78
format : 'table'
73
79
} ,
@@ -77,18 +83,58 @@ function createRowQueries(rows: TableRow[], sceneVariables: SceneVariables) {
77
83
export class DeploymentQueryBuilder implements QueryBuilder < TableRow > {
78
84
rootQueryBuilder ( variables : SceneVariableSet | SceneVariables , sorting : SortingState , sortingConfig ?: ColumnSortingConfig < TableRow > ) {
79
85
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
+ }
92
138
93
139
return new SceneQueryRunner ( {
94
140
datasource : {
@@ -98,7 +144,7 @@ export class DeploymentQueryBuilder implements QueryBuilder<TableRow> {
98
144
queries : [
99
145
{
100
146
refId : 'deployments' ,
101
- expr : query ,
147
+ expr : finalQuery . stringify ( ) ,
102
148
instant : true ,
103
149
format : 'table'
104
150
} ,
0 commit comments