Skip to content

Commit 0d22c87

Browse files
Merge pull request #95 from ernestas-poskus/features/bump_alert_manager_to_0_18_0
Bump alert manager to 0.18.0
2 parents 3c9b455 + 4904025 commit 0d22c87

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ prometheus_platform_architecture: 'linux-amd64'
6969
prometheus_node_exporter_version: '0.18.1'
7070

7171
# Alert manager
72-
prometheus_alert_manager_version: '0.16.2'
72+
prometheus_alert_manager_version: '0.18.0'
7373

7474
# Pushgateway
7575
prometheus_push_gateway_version: '0.9.1'

defaults/main.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ prometheus_platform_architecture: 'linux-amd64'
3131
prometheus_node_exporter_version: '0.18.1'
3232

3333
# Alert manager
34-
prometheus_alert_manager_version: '0.16.2'
34+
prometheus_alert_manager_version: '0.18.0'
3535

3636
# Pushgateway
3737
prometheus_push_gateway_version: '0.9.1'
@@ -418,10 +418,16 @@ prometheus_alert_manager_web__external_url:
418418
# Used for generating relative and absolute links back to Alertmanager itself.
419419
# If the URL has a path portion, it will be used to prefix all HTTP endpoints served by Alertmanager.
420420
# 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.
421425
prometheus_alert_manager_web__listen_address: ':9093'
422426
# Address to listen on for the web:interface and API. (default ":9093")
423427
prometheus_alert_manager_web__route_prefix:
424428
# 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.
425431

426432
# Pushgateway
427433
# https://github.com/prometheus/pushgateway

docs/alert_manager.md

+6
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,14 @@ prometheus_alert_manager_web__external_url:
9292
# Used for generating relative and absolute links back to Alertmanager itself.
9393
# If the URL has a path portion, it will be used to prefix all HTTP endpoints served by Alertmanager.
9494
# 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.
9599
prometheus_alert_manager_web__listen_address: ':9093'
96100
# Address to listen on for the web:interface and API. (default ":9093")
97101
prometheus_alert_manager_web__route_prefix:
98102
# 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.
99105
```

vars/alertmanager.yml

+2
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ prometheus_alert_manager_service_config:
2424
- ['log.level', "{{ prometheus_alert_manager_log__level }}"]
2525
- ['storage.path', "{{ prometheus_alert_manager_storage__path }}"]
2626
- ['web.external-url', "{{ prometheus_alert_manager_web__external_url }}"]
27+
- ['web.get-concurrency', "{{ prometheus_alert_manager_web__get_concurrency }}"]
2728
- ['web.listen-address', "{{ prometheus_alert_manager_web__listen_address }}"]
2829
- ['web.route-prefix', "{{ prometheus_alert_manager_web__route_prefix }}"]
30+
- ['web.timeout', "{{ prometheus_alert_manager_web__timeout }}"]

0 commit comments

Comments
 (0)