2024-08-12 12:46:22 +02:00
|
|
|
includedir /etc/munin/munin-conf.d
|
|
|
|
|
2024-08-12 13:06:55 +02:00
|
|
|
# Munin hosts.
|
|
|
|
{% for host in munin_hosts %}
|
|
|
|
[{{ host.name }}]
|
|
|
|
{% if host.address is defined %}
|
|
|
|
address {{ host.address }}
|
|
|
|
{% endif %}
|
|
|
|
{% if host.extra is defined %}
|
|
|
|
{% for extra in host.extra %}
|
|
|
|
{{ extra }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2024-08-12 12:46:22 +02:00
|
|
|
|
2024-08-12 13:06:55 +02:00
|
|
|
{% endfor %}
|