Merge pull request #423 from daixiang0/full-config

add miss promtail client config option
pull/438/head
David 6 years ago committed by GitHub
commit cfa0ba838b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      production/helm/values.yaml

@ -201,6 +201,14 @@ promtail:
config:
client:
# Maximum wait period before sending batch
batchwait: 1s
# Maximum batch size to accrue before sending, unit is byte
batchsize: 102400
# Maximum time to wait for server to respond to a request
timeout: 10s
backoff_config:
# Initial backoff time between retries
minbackoff: 100ms
@ -208,6 +216,10 @@ promtail:
maxbackoff: 5s
# Maximum number of retires when sending batches, 0 means infinite retries
maxretries: 5
# The labels to add to any time series or alerts when communicating with loki
external_labels: {}
server:
http_listen_port: 3101
positions:

Loading…
Cancel
Save