mirror of
https://gitlab.com/s3lph/ansible-collection-prometheus
synced 2024-11-22 17:51:01 +01:00
Fix conflicting variable names
This commit is contained in:
parent
cf803e3e55
commit
77bab78acc
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@
|
|||
mode: 0644
|
||||
validate: /usr/bin/promtool check rules %s
|
||||
vars:
|
||||
alert_groups: "{{ hostvars[inventory_hostname] | dict2items | selectattr('key', 'match', '^prometheus_job_.+$') | map(attribute='value') | map(attribute='group', default=prometheus_default_group_name) | unique | list }}"
|
||||
alert_groups: "{{ hostvars[inventory_hostname] | dict2items | selectattr('key', 'match', '^prometheus_job_.+$') | map(attribute='value') | map(attribute='group', default=prometheus_default_alert_group_name) | unique | list }}"
|
||||
jobs: "{{ hostvars[inventory_hostname] | dict2items | selectattr('key', 'match', '^prometheus_job_.+$') | map(attribute='value') | list }}"
|
||||
notify: restart prometheus
|
||||
|
||||
|
|
Loading…
Reference in a new issue