Total Zabbix alerts {{ count }}
Host Wise count:
{% for host, count in zabbixHostWiseCount.items() %}
{{ host }} |
{{ count }} |
{% endfor %}
Alerts:
{% for host in zabbixAlertWiseCount.keys() %}
Host: {{ host }}
Alert |
Count |
{% for hostAlertMessage, count in zabbixAlertWiseCount[host].items() %}
{{ hostAlertMessage }} |
{{ count }} |
{% endfor %}
{% endfor %}