forked from umanit/ansible-prometheus_exporter_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
37 lines (35 loc) · 806 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
# The version of the "exporter exporter" to install
prometheus_proxy_version: "0.5.0"
prometheus_proxy_state: "present"
prometheus_proxy_group: "prometehus-proxy"
prometheus_proxy_user: "{{ prometheus_proxy_group }}"
prometheus_proxy_startup_flags:
- "-web.listen-address=0.0.0.0:9999"
- "-config.file=/etc/expexp.yaml"
# Mandatory, example
# modules:
# node:
# method: http
# http:
# port: 9100
# mtail:
# method: http
# http:
# port: 3903
# cadvisor:
# verify: false
# method: http
# http:
# port: 4194
# somescript:
# method: exec
# timeout: 1s
# exec:
# command: /tmp/myscript.sh
# args:
# - "myarg1"
# - "myarg2"
# env:
# THING: "1"
# THING2: "2"