prometheus: add fastd statistics

This commit is contained in:
Markus 2018-07-26 11:32:07 +02:00
parent 0148513a65
commit 1425383a90
2 changed files with 11 additions and 0 deletions

View File

@ -7,6 +7,11 @@ confluence_dbname: confluence
confluence_dbuser: confluence
confluence_dbpass: "{{ vault_confluence_dbpass }}"
fastd_targets:
- gw11.regensburg.freifunk.net:9281
- gw21.regensburg.freifunk.net:9281
- gw31.regensburg.freifunk.net:9281
gre_prefix: 10.90.232.0/24
gre_matrix:
# - { id: 1, a: svcs, b: gw11 }

View File

@ -30,4 +30,10 @@ scrape_configs:
- targets:
{% for target in node_targets %}
- {{ target }}
{% endfor %}
- job_name: fastd
static_configs:
- targets:
{% for target in fastd_targets %}
- {{ target }}
{% endfor %}