We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e0891 commit 9117707Copy full SHA for 9117707
defaults/main.yml
@@ -243,6 +243,12 @@ icinga2_web_reporting: []
243
244
icinga2_web_icingadb: []
245
246
+# IcingaDB settings
247
+
248
+# icinga2_web_icingadb_settings:
249
+# hostdowntime_all_services: true
250
+icinga2_web_icingadb_settings: {}
251
252
# Grafana configuration
253
# icinga2_web_grafana:
254
# enabled: false
templates/etc/icingaweb2/modules/icingadb/config.ini.j2
@@ -1,7 +1,12 @@
1
[icingadb]
2
{% for resourceconf in icinga2_web_icingadb %}
3
resource = "{{ resourceconf.name }}"
4
-{% endfor %}
+{% endfor %}
5
6
+[settings]
7
+{% for key, value in icinga2_web_icingadb_settings.items() %}
8
+{{ key }} = {{ value | to_json }}
9
10
11
[redis]
12
tls = "0"
0 commit comments