1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-prometheus synced 2024-10-23 11:56:59 +02:00
ansible-collection-prometheus/roles/prometheus/tasks/main.yml

26 lines
533 B
YAML
Raw Normal View History

2020-11-13 10:36:46 +01:00
---
- name: install prometheus and blackbox exporter
import_tasks: install.yml
tags:
- "role::prometheus"
- "role::prometheus:install"
- name: configure blackbox exporter
import_tasks: blackbox.yml
tags:
- "role::prometheus"
- "role::prometheus:blackbox"
- name: configure prometheus
import_tasks: prometheus.yml
tags:
- "role::prometheus"
- "role::prometheus:config"
2021-11-06 05:22:17 +01:00
- name: flush prometheus time series database
import_tasks: flush.yml
tags:
- "role::prometheus:flush"
- "never"