File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ local defaults = {
16
16
prefixHeader: '' ,
17
17
autoDownsampling: true ,
18
18
useThanosEngine: false ,
19
+ useQueryPushdown: false ,
19
20
resources: {},
20
21
queryTimeout: '' ,
21
22
lookbackDelta: '' ,
@@ -66,6 +67,7 @@ function(params) {
66
67
assert std.isBoolean (tq.config.serviceMonitor),
67
68
assert std.isBoolean (tq.config.autoDownsampling),
68
69
assert std.isBoolean (tq.config.useThanosEngine),
70
+ assert std.isBoolean (tq.config.useQueryPushdown),
69
71
70
72
service: {
71
73
apiVersion: 'v1' ,
@@ -172,6 +174,10 @@ function(params) {
172
174
'--query.telemetry.request-series-seconds-quantiles=' + std.stripChars(quantile, ' ' )
173
175
for quantile in std.split (tq.config.telemetrySeriesQuantiles, ',' )
174
176
] else []
177
+ ) + (
178
+ if tq.config.useQueryPushdown then [
179
+ '--enable-feature=query-pushdown' ,
180
+ ] else []
175
181
),
176
182
env: [
177
183
{
You can’t perform that action at this time.
0 commit comments