blob: 596befb735e79983a36729e0abab4a7301bb8a5e [file] [log] [blame]
Petr Michalec5fc20582017-12-11 15:00:38 +01001{%- from "influxdb/map.jinja" import client with context %}
2
3{%- if client.get('enabled') %}
4{# CUSTOM QUERIES, intended to be called by salt_id #}
5
6{%- set mconf = pillar.salt.minion.get('config', {}).get('influxdb') %}
7
8{%- for db_name,db in client.get('database', {}).iteritems() %}
9{%- set db_name = db.get('name', db_name) %}
10{%- for qr_name,qr in db.get('query', {}).iteritems() %}
11
12{%- if qr is string %}
13{%- set query = { 'query': qr } %}
14{%- endif %}
15
16influxdb_query_{{ db_name }}_{{ qr_name }}:
17 module.run:
18 influxdb.query:
19 - database: {{ db_name }}
20 - query: {{ query }}
Petr Michalec5e2d4d02017-12-12 16:43:34 +010021 - host: {{ mconf.host }}
22 - port: {{ mconf.port }}
23 {%- if qr.user is defined OR mconf.password is defined %}
24 - user: {{ qr.get('user', mconf.user) }}
25 {%- endif %}
26 {%- if qr.password is defined OR mconf.password is defined %}
27 - password: {{ qr.get('password', mconf.password) }}
Petr Michalec5fc20582017-12-11 15:00:38 +010028 {%- endif %}
29{%- endfor %}
30{%- endfor %}
31