···
Maximum size of concurrently allocatable bytes for chunks.
269
-
store.grpc.series-sample-limit = mkParamDef types.int 0 ''
270
-
Maximum amount of samples returned via a single Series call.
269
+
store.limits.request-samples = mkParamDef types.int 0 ''
270
+
The maximum samples allowed for a single Series request.
271
+
The Series call fails if this limit is exceeded.
274
-
NOTE: for efficiency we take 120 as the number of samples in chunk (it
275
-
cannot be bigger than that), so the actual number of samples might be
276
-
lower, even though the maximum could be hit.
275
+
NOTE: For efficiency the limit is internally implemented as 'chunks limit'
276
+
considering each chunk contains a maximum of 120 samples.
store.grpc.series-max-concurrency = mkParamDef types.int 20 ''
···
Maximum number of queries processed concurrently by query node.
374
-
query.replica-label = mkParam types.str ''
375
-
Label to treat as a replica indicator along which data is
374
+
query.replica-labels = mkAttrsParam "query.replica-label" ''
375
+
Labels to treat as a replica indicator along which data is
Still you will be able to query without deduplication using
379
-
`dedup=false` parameter.
380
+
'dedup=false' parameter. Data includes time series, recording
381
+
rules, and alerting rules.
selector-labels = mkAttrsParam "selector-label" ''
Query selector labels that will be exposed in info endpoint.
386
-
store.addresses = mkListParam "store" ''
387
-
Addresses of statically configured store API servers.
388
+
endpoints = mkListParam "endpoint" ''
389
+
Addresses of statically configured Thanos API servers (repeatable).
389
-
The scheme may be prefixed with `dns+` or
390
-
`dnssrv+` to detect store API servers through
391
-
respective DNS lookups.
391
+
The scheme may be prefixed with 'dns+' or 'dnssrv+' to detect
392
+
Thanos API servers through respective DNS lookups.
store.sd-files = mkListParam "store.sd-files" ''
···
Rule files that should be used by rule manager. Can be in glob format.
456
-
eval-interval = mkParamDef types.str "30s" ''
457
+
eval-interval = mkParamDef types.str "1m" ''
The default evaluation interval to use.
···
This is not recommended as querying long time ranges without
non-downsampled data is not efficient and useful e.g it is not possible
to render all samples for a human eye anyway
606
-
block-sync-concurrency = mkParamDef types.int 20 ''
607
-
Number of goroutines to use when syncing block metadata from object storage.
compact.concurrency = mkParamDef types.int 1 ''