prometheus/tasks/main.yml

42 lines
1.1 KiB
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 | requirements'
include_tasks: 'requirements.yml'
- name: 'prometheus | server install'
include_tasks: 'prometheus.yml'
when:
- 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:
- "'mysqld' in prometheus_exporter_packages"
- name: 'prometheus | PostgreSQL exporter'
include_tasks: 'postgresql_exporter.yml'
when:
- "'postgresql' in prometheus_exporter_packages"
- name: 'prometheus | PHP Fpm exporter'
include_tasks: 'phpfpm_exporter.yml'
when:
- "'phpfpm' in prometheus_exporter_packages"
- name: 'prometheus | Apache exporter'
include_tasks: 'apache_exporter.yml'
when:
- "'apache' in prometheus_exporter_packages"