aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/health_template.j26
-rw-r--r--templates/netdata_alarm.conf.j221
2 files changed, 27 insertions, 0 deletions
diff --git a/templates/health_template.j2 b/templates/health_template.j2
new file mode 100644
index 0000000..2e67b96
--- /dev/null
+++ b/templates/health_template.j2
@@ -0,0 +1,6 @@
1{% for template in collector.health_config %}
2template = {{ template.name }}
3{% for config in template.definition %}
4{{ config }}
5{% endfor %}
6{% endfor %}
diff --git a/templates/netdata_alarm.conf.j2 b/templates/netdata_alarm.conf.j2
new file mode 100644
index 0000000..c689a95
--- /dev/null
+++ b/templates/netdata_alarm.conf.j2
@@ -0,0 +1,21 @@
1{% for alarm in collector.alarm_config %}
2{% if alarm.template is defined -%}
3template: {{ alarm.template }}
4families: {{ alarm.families | default("*") }}
5{% else %}
6 alarm: {{ alarm.alarm | default( collector.name ) }}
7{% endif %}
8 on: {{ alarm.on_what }}
9 os: {{ alarm.os | default("*") }}
10 hosts: {{ alarm.os | default("*") }}
11 lookup: {{ alarm.lookup }}
12{% if alarm.calc is defined %}
13 calc: {{ alarm.calc }}
14{% endif %}
15 every: {{ alarm.every | default("1m") }}
16 warn: {{ alarm.warn | default("$status == $WARNING") }}
17 crit: {{ alarm.crit | default("$status == $CRITICAL") }}
18 delay: {{ alarm.delay | default("up 0 down 0 multiplier 1.0 max 0") }}
19 to: {{ alarm.to | default("silent") }}
20
21{% endfor %}