{% if service == 'haproxy' %}
Bytes in
{% set total = bin_bout.0|int / 1024 %} {% set metric = 'Kb' %} {% if total > 1000 %} {% set total = total / 1024 %} {% set metric = 'Mb' %} {% endif %} {% if total > 1000 %} {% set total = total / 1024 %} {% set metric = 'Gb' %} {% endif %} {{total|round(2)}} {{metric}}
Bytes Out
{% set total = bin_bout.1|int / 1024 %} {% set metric = 'Kb' %} {% if total > 1000 %} {% set total = total / 1024 %} {% set metric = 'Mb' %} {% endif %} {% if total > 1000 %} {% set total = total / 1024 %} {% set metric = 'Gb' %} {% endif %} {{total|round(2)}} {{metric}}
{% endif %} {% if service == 'nginx' or service == 'haproxy' %}
Current ses {% if service == 'nginx' %} {% endif %}
{{bin_bout.2}}
Total ses
{{bin_bout.3}}
{% endif %} {% if service == 'apache' %}
ReqPerSec
{{bin_bout.0}}
BytesPerSec
{% set total = bin_bout.1|int / 1024 %} {% set metric = 'Kb' %} {% if total > 1000 %} {% set total = total / 1024 %} {% set metric = 'Mb' %} {% endif %} {% if total > 1000 %} {% set total = total / 1024 %} {% set metric = 'Gb' %} {% endif %} {{total|round(2)}} {{metric}}
{% endif %} {% if service == 'keepalived' %}
Became Master
{{bin_bout}}
{% endif %}