Skip to content

Commit d23c6bb

Browse files
committed
fix CI
1 parent b424578 commit d23c6bb

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

cmd/pyroscope/help-all.txt.tmpl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,8 @@ Usage of ./pyroscope:
587587
Limit how far back in profiling data can be queried, up until lookback duration ago. This limit is enforced in the query frontend. If the requested time range is outside the allowed range, the request will not fail, but will be modified to only query data within the allowed time range. 0 to disable, default to 7d. (default 1w)
588588
-querier.max-query-parallelism int
589589
Maximum number of queries that will be scheduled in parallel by the frontend.
590+
-querier.min-step-duration duration
591+
The minimum step duration for range queries. (default 15s)
590592
-querier.query-analysis-enabled
591593
Whether query analysis is enabled in the query frontend. If disabled, the /AnalyzeQuery endpoint will return an empty response. (default true)
592594
-querier.query-analysis-series-enabled

cmd/pyroscope/help.txt.tmpl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ Usage of ./pyroscope:
167167
Limit how far back in profiling data can be queried, up until lookback duration ago. This limit is enforced in the query frontend. If the requested time range is outside the allowed range, the request will not fail, but will be modified to only query data within the allowed time range. 0 to disable, default to 7d. (default 1w)
168168
-querier.max-query-parallelism int
169169
Maximum number of queries that will be scheduled in parallel by the frontend.
170+
-querier.min-step-duration duration
171+
The minimum step duration for range queries. (default 15s)
170172
-querier.query-analysis-enabled
171173
Whether query analysis is enabled in the query frontend. If disabled, the /AnalyzeQuery endpoint will return an empty response. (default true)
172174
-querier.query-analysis-series-enabled

docs/sources/configure-server/reference-configuration-parameters/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2293,6 +2293,10 @@ distributor_usage_groups:
22932293
# CLI flag: -querier.query-analysis-series-enabled
22942294
[query_analysis_series_enabled: <boolean> | default = false]
22952295
2296+
# The minimum step duration for range queries.
2297+
# CLI flag: -querier.min-step-duration
2298+
[min_step_duration: <duration> | default = 15s]
2299+
22962300
# Maximum number of flame graph nodes by default. 0 to disable.
22972301
# CLI flag: -querier.max-flamegraph-nodes-default
22982302
[max_flamegraph_nodes_default: <int> | default = 8192]

0 commit comments

Comments
 (0)