Browse Source

roles/icinga2: improved web service syntax

http external web services are monitored as separeted host
python3
Zolfa 4 years ago
parent
commit
5278d25567
Signed by: zolfa GPG Key ID: E1A43B038C4D6616
1 changed files with 19 additions and 7 deletions
  1. +19
    -7
      roles/icinga2-monitoring/templates/host.conf.j2

+ 19
- 7
roles/icinga2-monitoring/templates/host.conf.j2 View File

@ -16,9 +16,20 @@ object Host "{{ item.key }}" {
vars.{{ var.key }} = "{{ var.value }}"
{% endfor %}
{% if 'vhosts' in item.value %}
{% for vhost in item.value.vhosts %}
vars.http_vhosts["https cert: {{ vhost }}"] = {
{% for vhost in item.value.vhosts|d([]) %}
object Host "{{ vhost }}" {
import "generic-host"
check_command = "dummy"
display_name = "www/{{ vhost }}"
vars.sla = "24x7"
vars.host_type = "web service"
vars.dns_a_record = "{{ public_ip }}"
vars.http_vhosts["https cert"] = {
http_address = "{{ item.value.address }}"
http_ssl = true
http_vhost = "{{ vhost }}"
http_onredirect = "sticky"
@ -26,8 +37,9 @@ object Host "{{ item.key }}" {
/* Check remaining days before cert expiration */
http_certificate = "30,20"
}
{% for uri, prop in (item.value.vhosts_uri[vhost]|d({'/': {}})).items() %}
vars.http_vhosts["https service: {{ vhost }}{{ uri }}"] = {
{% for uri, prop in (item.value.vhosts_uri[vhost]|d({'/': {}})).items() %}
vars.http_vhosts["https service"] = {
http_address = "{{ item.value.address }}"
http_ssl = true
http_vhost = "{{ vhost }}"
http_onredirect = "{{ prop.onredirect|d('sticky') }}"
@ -35,9 +47,9 @@ object Host "{{ item.key }}" {
http_uri = "{{ uri }}"
{% if prop.content|d('') != '' %}http_string = "{{ prop.content|replace('"','\\"') }}"{% endif %}
}
{% endfor %}
{% endfor %}
{% endif %}
}
{% endfor %}

Loading…
Cancel
Save