prometheus/tasks/main.yml
2021-05-26 10:46:57 +02:00

30 lines
817 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: 'prometheus | include asserts'
include_tasks: 'asserts.yml'
- name: 'prometheus | server install'
include_tasks: 'prometheus.yml'
when:
- prometheus_server_enable is defined
- prometheus_server_enable == "true"
- name: 'prometheus | Node exporter'
include_tasks: 'node_exporter.yml'
when:
- "'node' in {{ prometheus_exporter_packages }}"
- name: 'prometheus | MongoDB exporter'
include_tasks: 'mongodb_exporter.yml'
when:
- "'mongodb' in {{ prometheus_exporter_packages }}"
- name: 'prometheus | MySQL exporter'
include_tasks: 'mysqld_exporter.yml'
when:
- "'mysql' in {{ prometheus_exporter_packages }}"
- name: 'prometheus | PostgreSQL exporter'
include_tasks: 'postgresql_exporter.yml'
when:
- "'postgresql' in {{ prometheus_exporter_packages }}"