Statistics
{% if data|length > 0 %}
{% set prevMonth = none %}
{% set prevYear = none %}
{% endif %}
{% for item in data %}
{% if prevYear != item['year'] or prevMonth != item['month'] %}
{{ "0" + item['month'] if item['month'] < 10 else item['month'] }}.{{ item['year'] }}
| Origin Domain |
Total Connections |
Total Processed Commands |
Total Unique IPs |
{% endif %}
| {{ item['origin'] }} |
{{ item['total_connections'] }} |
{{ item['total_processed_commands'] }} |
{{ item['total_unique_ips'] }} |
{% set prevMonth = item['month'] %}
{% set prevYear = item['year'] %}
{% if data[loop.index + 1]['month'] != prevMonth and data[loop.index + 1]['year'] != prevYear %}
{% endif %}
{% endfor %}