File tree 4 files changed +16
-2
lines changed
4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ prometheus_platform_architecture: 'linux-amd64'
69
69
prometheus_node_exporter_version : ' 0.18.1'
70
70
71
71
# Alert manager
72
- prometheus_alert_manager_version : ' 0.16.2 '
72
+ prometheus_alert_manager_version : ' 0.18.0 '
73
73
74
74
# Pushgateway
75
75
prometheus_push_gateway_version : ' 0.9.1'
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ prometheus_platform_architecture: 'linux-amd64'
31
31
prometheus_node_exporter_version : ' 0.18.1'
32
32
33
33
# Alert manager
34
- prometheus_alert_manager_version : ' 0.16.2 '
34
+ prometheus_alert_manager_version : ' 0.18.0 '
35
35
36
36
# Pushgateway
37
37
prometheus_push_gateway_version : ' 0.9.1'
@@ -418,10 +418,16 @@ prometheus_alert_manager_web__external_url:
418
418
# Used for generating relative and absolute links back to Alertmanager itself.
419
419
# If the URL has a path portion, it will be used to prefix all HTTP endpoints served by Alertmanager.
420
420
# If omitted, relevant URL components will be derived automatically.
421
+ prometheus_alert_manager_web__get_concurrency :
422
+ # Maximum number of GET requests processed
423
+ # concurrently. If negative or zero, the limit is
424
+ # GOMAXPROC or 8, whichever is larger.
421
425
prometheus_alert_manager_web__listen_address : ' :9093'
422
426
# Address to listen on for the web:interface and API. (default ":9093")
423
427
prometheus_alert_manager_web__route_prefix :
424
428
# Prefix for the internal routes of web endpoints. Defaults to path of -web.external-url.
429
+ prometheus_alert_manager_web__timeout : 0
430
+ # Timeout for HTTP requests. If negative or zero,no timeout is set.
425
431
426
432
# Pushgateway
427
433
# https://github.com/prometheus/pushgateway
Original file line number Diff line number Diff line change @@ -92,8 +92,14 @@ prometheus_alert_manager_web__external_url:
92
92
# Used for generating relative and absolute links back to Alertmanager itself.
93
93
# If the URL has a path portion, it will be used to prefix all HTTP endpoints served by Alertmanager.
94
94
# If omitted, relevant URL components will be derived automatically.
95
+ prometheus_alert_manager_web__get_concurrency :
96
+ # Maximum number of GET requests processed
97
+ # concurrently. If negative or zero, the limit is
98
+ # GOMAXPROC or 8, whichever is larger.
95
99
prometheus_alert_manager_web__listen_address : ' :9093'
96
100
# Address to listen on for the web:interface and API. (default ":9093")
97
101
prometheus_alert_manager_web__route_prefix :
98
102
# Prefix for the internal routes of web endpoints. Defaults to path of -web.external-url.
103
+ prometheus_alert_manager_web__timeout : 0
104
+ # Timeout for HTTP requests. If negative or zero,no timeout is set.
99
105
```
Original file line number Diff line number Diff line change @@ -24,5 +24,7 @@ prometheus_alert_manager_service_config:
24
24
- ['log.level', "{{ prometheus_alert_manager_log__level }}"]
25
25
- ['storage.path', "{{ prometheus_alert_manager_storage__path }}"]
26
26
- ['web.external-url', "{{ prometheus_alert_manager_web__external_url }}"]
27
+ - ['web.get-concurrency', "{{ prometheus_alert_manager_web__get_concurrency }}"]
27
28
- ['web.listen-address', "{{ prometheus_alert_manager_web__listen_address }}"]
28
29
- ['web.route-prefix', "{{ prometheus_alert_manager_web__route_prefix }}"]
30
+ - ['web.timeout', "{{ prometheus_alert_manager_web__timeout }}"]
You can’t perform that action at this time.
0 commit comments