[docs] Update remote write queue defaults

Update docs to reflect the default values in the
`config.DefaultQueueConfig`

Signed-off-by: Raúl Naveiras <me@raulnaveiras.com>
This commit is contained in:
Raúl Naveiras 2024-02-26 15:57:22 +00:00
parent e6d3d6abd9
commit 58f528dcbc
No known key found for this signature in database
GPG Key ID: 06C15C6E09B33D36
1 changed files with 3 additions and 3 deletions

View File

@ -3643,13 +3643,13 @@ queue_config:
# samples from the WAL. It is recommended to have enough capacity in each
# shard to buffer several requests to keep throughput up while processing
# occasional slow remote requests.
[ capacity: <int> | default = 2500 ]
[ capacity: <int> | default = 10000 ]
# Maximum number of shards, i.e. amount of concurrency.
[ max_shards: <int> | default = 200 ]
[ max_shards: <int> | default = 50 ]
# Minimum number of shards, i.e. amount of concurrency.
[ min_shards: <int> | default = 1 ]
# Maximum number of samples per send.
[ max_samples_per_send: <int> | default = 500]
[ max_samples_per_send: <int> | default = 2000]
# Maximum time a sample will wait in buffer.
[ batch_send_deadline: <duration> | default = 5s ]
# Initial retry delay. Gets doubled for every retry.