mirror of
https://github.com/prometheus/prometheus
synced 2024-12-24 23:42:32 +00:00
document remote write queue parameters (#4126)
This commit is contained in:
parent
a4e4bec3fe
commit
b424eb42e3
@ -1193,6 +1193,24 @@ tls_config:
|
||||
|
||||
# Optional proxy URL.
|
||||
[ proxy_url: <string> ]
|
||||
|
||||
# Configures the queue used to write to remote storage.
|
||||
queue_config:
|
||||
# Number of samples to buffer per shard before we start dropping them.
|
||||
[ capacity: <int> | default = 100000 ]
|
||||
# Maximum number of shards, i.e. amount of concurrency.
|
||||
[ max_shards: <int> | default = 1000 ]
|
||||
# Maximum number of samples per send.
|
||||
[ max_samples_per_send: <int> | default = 100]
|
||||
# Maximum time a sample will wait in buffer.
|
||||
[ batch_send_deadline: <duration> | default = 5s ]
|
||||
# Maximum number of times to retry a batch on recoverable errors.
|
||||
[ max_retries: <int> | default = 10 ]
|
||||
# Initial retry delay. Gets doubled for every retry.
|
||||
[ min_backoff: <duration> | default = 30ms ]
|
||||
# Maximum retry delay.
|
||||
[ max_backoff: <duration> | default = 100ms ]
|
||||
|
||||
```
|
||||
|
||||
There is a list of
|
||||
|
Loading…
Reference in New Issue
Block a user