Skip to content

Commit ffe462f

Browse files
committed
refactor: Refactor pods queries to use query builder
1 parent 6bffdcf commit ffe462f

File tree

3 files changed

+281
-223
lines changed

3 files changed

+281
-223
lines changed

src/common/promql.ts

+56-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
export enum MatchOperators {
43
EQUALS = '=',
54
NOT_EQUALS = '!=',
@@ -16,6 +15,8 @@ export interface OperatorAndValue {
1615
value: string;
1716
}
1817

18+
export type Labels = Record<string, OperatorAndValue>;
19+
1920
enum MatchingModifiers {
2021
IGNORING = 'ignoring',
2122
ON = 'on',
@@ -72,6 +73,26 @@ class PromQLBinaryExpression extends PromQLExpression {
7273
}
7374
}
7475

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+
7596
enum LogicalOperators {
7697
AND = 'and',
7798
OR = 'or',
@@ -87,7 +108,8 @@ class PromQLLogicalExpression extends PromQLExpression {
87108
}
88109
}
89110

90-
abstract class PromQLVectorExpression extends PromQLExpression {
111+
112+
export abstract class PromQLVectorExpression extends PromQLExpression {
91113

92114
add() {
93115
return new PromQLBinaryExpression(BinaryOperators.ADD, this);
@@ -120,15 +142,19 @@ abstract class PromQLVectorExpression extends PromQLExpression {
120142
and(vectorExpr: PromQLVectorExpression) {
121143
return new PromQLLogicalExpression(LogicalOperators.AND, this, vectorExpr);
122144
}
145+
146+
equals(value: number) {
147+
return new PromQLComparisonExpression(ComparisonOperators.EQUALS, this, new PromQLScalarExpression(value));
148+
}
123149
}
124150

125151
class PromQLScalarExpression extends PromQLVectorExpression {
126-
constructor(private scalar: number, private left: PromQLExpression) {
152+
constructor(private scalar: number, private left?: PromQLExpression) {
127153
super();
128154
}
129155

130156
stringify() {
131-
return `${this.left.stringify()} ${this.scalar}`;
157+
return this.left ? `${this.left.stringify()} ${this.scalar}` : `${this.scalar}`;
132158
}
133159
}
134160

@@ -170,7 +196,23 @@ class PromQLMetric extends PromQLVectorExpression {
170196
return this.withLabel(label, MatchOperators.NOT_MATCHES, value);
171197
}
172198

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) {
174216
this.labels = { ...this.labels, ...labels };
175217
return this;
176218
}
@@ -226,16 +268,20 @@ class PromQLFunction extends PromQLVectorExpression {
226268

227269
stringify() {
228270
return `${this.name}(
229-
${this.subExpression.stringify()}
271+
${this.subExpression.stringify()}${this.stringifyInner()}
230272
)`;
231273
}
274+
275+
stringifyInner() {
276+
return ''
277+
}
232278
}
233279

234280
class PromQLAggregationFunction extends PromQLFunction {
235281

236282
private groupingExperssion: PromByExpression | PromQLWithoutExpression | undefined;
237283

238-
by(...labels: string[]) {
284+
by(labels: string[]) {
239285
this.groupingExperssion = new PromByExpression(labels);
240286
return this;
241287
}
@@ -290,8 +336,8 @@ class PromQLRateFunction extends PromQLFunction {
290336
super('rate', subExpression);
291337
}
292338

293-
stringify() {
294-
return `${super.stringify()}[${this.range}]`;
339+
stringifyInner() {
340+
return `[${this.range}]`;
295341
}
296342
}
297343

@@ -308,7 +354,7 @@ export class PromQL {
308354
return new PromQLSortFunction(direction, subExpression);
309355
}
310356

311-
static rate(range: string, subExpression: PromQLExpression) {
357+
static rate(subExpression: PromQLExpression, range: string) {
312358
return new PromQLRateFunction(range, subExpression);
313359
}
314360

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ function createReplicasQuery(cluster: string, additionalLabels: Record<string, O
2828
PromQL.metric(Metrics.kubeDeploymentStatusReplicas.name)
2929
.withLabels(additionalLabels)
3030
.withLabelEquals('cluster', cluster)
31-
).by(
31+
).by([
3232
Metrics.kubeDeploymentStatusReplicas.labels.deployment,
3333
Metrics.kubeDeploymentStatusReplicas.labels.namespace
34-
)
34+
])
3535
}
3636

3737
function createReplicasReadyQuery(cluster: string, deployments: string) {
@@ -40,10 +40,10 @@ function createReplicasReadyQuery(cluster: string, deployments: string) {
4040
PromQL.metric(Metrics.kubeDeploymentStatusReplicasReady.name)
4141
.withLabelMatches(Metrics.kubeDeploymentStatusReplicasReady.labels.deployment, deployments)
4242
.withLabelEquals('cluster', cluster)
43-
).by(
43+
).by([
4444
Metrics.kubeDeploymentStatusReplicasReady.labels.deployment,
4545
Metrics.kubeDeploymentStatusReplicasReady.labels.namespace
46-
)
46+
])
4747
}
4848

4949
function createRowQueries(rows: TableRow[], sceneVariables: SceneVariables) {
@@ -88,10 +88,10 @@ export class DeploymentQueryBuilder implements QueryBuilder<TableRow> {
8888
.withLabelEquals('cluster', '$cluster')
8989
.withLabelMatches(Metrics.kubeDeploymentCreated.labels.namespace, '$namespace')
9090
.withLabelMatches(Metrics.kubeDeploymentCreated.labels.deployment, '.*$search.*')
91-
).by(
91+
).by([
9292
Metrics.kubeDeploymentCreated.labels.deployment,
9393
Metrics.kubeDeploymentCreated.labels.namespace
94-
)
94+
])
9595

9696
const remoteSort = sortingConfig && sortingConfig.local === false
9797

@@ -113,7 +113,7 @@ export class DeploymentQueryBuilder implements QueryBuilder<TableRow> {
113113
value: ''
114114
}
115115
})
116-
).by('namespace', 'deployment')
116+
).by(['namespace', 'deployment'])
117117
).or(
118118
baseQuery.multiply().withScalar(0)
119119
)

0 commit comments

Comments
 (0)