mirror of
https://gitlab.com/s3lph/ansible-collection-prometheus
synced 2024-11-22 09:41:01 +01:00
28 lines
597 B
YAML
28 lines
597 B
YAML
|
---
|
||
|
|
||
|
- 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"
|
||
|
|
||
|
# Some problems with "never" tag
|
||
|
#- name: flush prometheus time series database
|
||
|
# import_tasks: flush.yml
|
||
|
# tags:
|
||
|
# - "role::prometheus"
|
||
|
# - "role::prometheus:flush"
|
||
|
# - "never"
|