File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 17
17
metadata: {{ .Values.config.metadata }}
18
18
log_response_errors: {{ .Values.config.log_response_errors }}
19
19
max_connection_duration: {{ .Values.config.max_connection_duration }}
20
+ max_conns_per_host: {{ .Values.config.max_conns_per_host }}
20
21
{{- if .Values.config.auth.enabled }}
21
22
auth:
22
23
egress:
Original file line number Diff line number Diff line change @@ -87,6 +87,11 @@ config:
87
87
# Use 0 to keep them indefinitely
88
88
# (env: `CT_MAX_CONN_DURATION`)
89
89
max_connection_duration : 0s
90
+ # -- This parameter sets the limit for the count of outgoing concurrent connections to Cortex / Mimir.
91
+ # By default it's 64 and if all of these connections are busy you will get errors when pushing from Prometheus.
92
+ # If your `target` is a DNS name that resolves to several IPs then this will be a per-IP limit.
93
+ # (env: `CT_MAX_CONNS_PER_HOST`)
94
+ max_conns_per_host : 64
90
95
91
96
# Authentication (optional)
92
97
auth :
You can’t perform that action at this time.
0 commit comments