prometheus: add newline at the end of targets JSON
This commit is contained in:
parent
cc2ba9ff7b
commit
bc4dc03029
1 changed files with 3 additions and 3 deletions
|
@ -66,21 +66,21 @@
|
||||||
# We don't need to restart Prometheus when updating nodes
|
# We don't need to restart Prometheus when updating nodes
|
||||||
- name: Configure Prometheus nodes
|
- name: Configure Prometheus nodes
|
||||||
copy:
|
copy:
|
||||||
content: "{{ prometheus_targets | to_nice_json }}"
|
content: "{{ prometheus_targets | to_nice_json }}\n"
|
||||||
dest: /etc/prometheus/targets.json
|
dest: /etc/prometheus/targets.json
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
||||||
# We don't need to restart Prometheus when updating nodes
|
# We don't need to restart Prometheus when updating nodes
|
||||||
- name: Configure Prometheus Ubiquity Unifi SNMP devices
|
- name: Configure Prometheus Ubiquity Unifi SNMP devices
|
||||||
copy:
|
copy:
|
||||||
content: "{{ prometheus_unifi_snmp_targets | to_nice_json }}"
|
content: "{{ prometheus_unifi_snmp_targets | to_nice_json }}\n"
|
||||||
dest: /etc/prometheus/targets_unifi_snmp.json
|
dest: /etc/prometheus/targets_unifi_snmp.json
|
||||||
mode: 0644
|
mode: 0644
|
||||||
when: prometheus_unifi_snmp_targets is defined
|
when: prometheus_unifi_snmp_targets is defined
|
||||||
|
|
||||||
- name: Configure Prometheus Switchs
|
- name: Configure Prometheus Switchs
|
||||||
copy:
|
copy:
|
||||||
content: "{{ prometheus_switch_snmp_targets | to_nice_json }}"
|
content: "{{ prometheus_switch_snmp_targets | to_nice_json }}\n"
|
||||||
dest: /etc/prometheus/targets_switch_snmp.json
|
dest: /etc/prometheus/targets_switch_snmp.json
|
||||||
mode: 0644
|
mode: 0644
|
||||||
when: prometheus_switch_snmp_targets is defined
|
when: prometheus_switch_snmp_targets is defined
|
||||||
|
|
Loading…
Reference in a new issue