infrastructure/ansible/roles/forrest/handlers/main.yml
Jake Howard aba81f79bc
Add telegraf
And input to ping and output via prometheus
2021-03-04 15:16:54 +00:00

20 lines
397 B
YAML

- name: restart grafana
shell:
chdir: /opt/grafana
cmd: "{{ docker_update_command }}"
- name: restart influxdb
shell:
chdir: /opt/influxdb
cmd: "{{ docker_update_command }}"
- name: restart prometheus
shell:
chdir: /opt/prometheus
cmd: "{{ docker_update_command }}"
- name: restart telegraf
shell:
chdir: /opt/telegraf
cmd: "{{ docker_update_command }}"