1
1
2
-
3
2
export enum MatchOperators {
4
3
EQUALS = '=' ,
5
4
NOT_EQUALS = '!=' ,
@@ -16,6 +15,8 @@ export interface OperatorAndValue {
16
15
value : string ;
17
16
}
18
17
18
+ export type Labels = Record < string , OperatorAndValue > ;
19
+
19
20
enum MatchingModifiers {
20
21
IGNORING = 'ignoring' ,
21
22
ON = 'on' ,
@@ -72,6 +73,26 @@ class PromQLBinaryExpression extends PromQLExpression {
72
73
}
73
74
}
74
75
76
+ export enum ComparisonOperators {
77
+ EQUALS = '==' ,
78
+ NOT_EQUALS = '!=' ,
79
+ GREATER_THAN = '>' ,
80
+ LESS_THAN = '<' ,
81
+ GREATER_THAN_OR_EQUALS = '>=' ,
82
+ LESS_THAN_OR_EQUALS = '<=' ,
83
+ }
84
+
85
+ class PromQLComparisonExpression extends PromQLExpression {
86
+
87
+ constructor ( private operator : ComparisonOperators , private left : PromQLExpression , private right : PromQLExpression ) {
88
+ super ( ) ;
89
+ }
90
+
91
+ stringify ( ) {
92
+ return `${ this . left . stringify ( ) } ${ this . operator } ${ this . right . stringify ( ) } ` ;
93
+ }
94
+ }
95
+
75
96
enum LogicalOperators {
76
97
AND = 'and' ,
77
98
OR = 'or' ,
@@ -87,7 +108,8 @@ class PromQLLogicalExpression extends PromQLExpression {
87
108
}
88
109
}
89
110
90
- abstract class PromQLVectorExpression extends PromQLExpression {
111
+
112
+ export abstract class PromQLVectorExpression extends PromQLExpression {
91
113
92
114
add ( ) {
93
115
return new PromQLBinaryExpression ( BinaryOperators . ADD , this ) ;
@@ -120,15 +142,19 @@ abstract class PromQLVectorExpression extends PromQLExpression {
120
142
and ( vectorExpr : PromQLVectorExpression ) {
121
143
return new PromQLLogicalExpression ( LogicalOperators . AND , this , vectorExpr ) ;
122
144
}
145
+
146
+ equals ( value : number ) {
147
+ return new PromQLComparisonExpression ( ComparisonOperators . EQUALS , this , new PromQLScalarExpression ( value ) ) ;
148
+ }
123
149
}
124
150
125
151
class PromQLScalarExpression extends PromQLVectorExpression {
126
- constructor ( private scalar : number , private left : PromQLExpression ) {
152
+ constructor ( private scalar : number , private left ? : PromQLExpression ) {
127
153
super ( ) ;
128
154
}
129
155
130
156
stringify ( ) {
131
- return `${ this . left . stringify ( ) } ${ this . scalar } ` ;
157
+ return this . left ? `${ this . left . stringify ( ) } ${ this . scalar } ` : ` ${ this . scalar } `;
132
158
}
133
159
}
134
160
@@ -170,7 +196,23 @@ class PromQLMetric extends PromQLVectorExpression {
170
196
return this . withLabel ( label , MatchOperators . NOT_MATCHES , value ) ;
171
197
}
172
198
173
- withLabels ( labels : Record < string , OperatorAndValue > ) {
199
+ withLabelEqualsIf ( label : string , value : string , condition : boolean ) {
200
+ return condition ? this . withLabelEquals ( label , value ) : this ;
201
+ }
202
+
203
+ withLabelMatchesIf ( label : string , value : string , condition : boolean ) {
204
+ return condition ? this . withLabelMatches ( label , value ) : this ;
205
+ }
206
+
207
+ withLabelNotEqualsIf ( label : string , value : string , condition : boolean ) {
208
+ return condition ? this . withLabelNotEquals ( label , value ) : this ;
209
+ }
210
+
211
+ withLabelNotMatchesIf ( label : string , value : string , condition : boolean ) {
212
+ return condition ? this . withLabelNotMatches ( label , value ) : this ;
213
+ }
214
+
215
+ withLabels ( labels : Labels ) {
174
216
this . labels = { ...this . labels , ...labels } ;
175
217
return this ;
176
218
}
@@ -226,16 +268,20 @@ class PromQLFunction extends PromQLVectorExpression {
226
268
227
269
stringify ( ) {
228
270
return `${ this . name } (
229
- ${ this . subExpression . stringify ( ) }
271
+ ${ this . subExpression . stringify ( ) } ${ this . stringifyInner ( ) }
230
272
)` ;
231
273
}
274
+
275
+ stringifyInner ( ) {
276
+ return ''
277
+ }
232
278
}
233
279
234
280
class PromQLAggregationFunction extends PromQLFunction {
235
281
236
282
private groupingExperssion : PromByExpression | PromQLWithoutExpression | undefined ;
237
283
238
- by ( ... labels : string [ ] ) {
284
+ by ( labels : string [ ] ) {
239
285
this . groupingExperssion = new PromByExpression ( labels ) ;
240
286
return this ;
241
287
}
@@ -290,8 +336,8 @@ class PromQLRateFunction extends PromQLFunction {
290
336
super ( 'rate' , subExpression ) ;
291
337
}
292
338
293
- stringify ( ) {
294
- return `${ super . stringify ( ) } [${ this . range } ]` ;
339
+ stringifyInner ( ) {
340
+ return `[${ this . range } ]` ;
295
341
}
296
342
}
297
343
@@ -308,7 +354,7 @@ export class PromQL {
308
354
return new PromQLSortFunction ( direction , subExpression ) ;
309
355
}
310
356
311
- static rate ( range : string , subExpression : PromQLExpression ) {
357
+ static rate ( subExpression : PromQLExpression , range : string ) {
312
358
return new PromQLRateFunction ( range , subExpression ) ;
313
359
}
314
360
0 commit comments