mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
4 years ago
|
<div class="bin_bout" id="show_bin_bout">
|
||
|
<div class="server-name">
|
||
|
Bytes in
|
||
|
<span class="update-icon">
|
||
|
<a onclick="showBytes('{{ serv }}')" title="Refresh">
|
||
|
<span class="service-reload"></span>
|
||
|
</a>
|
||
|
</span>
|
||
|
</div>
|
||
|
<div class="bytes" id="bin">
|
||
|
{% 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}}
|
||
|
</div>
|
||
|
<div class="server-name">
|
||
|
Bytes Out
|
||
|
</div>
|
||
|
<div class="bytes" id="bout">
|
||
|
{% 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}}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="sessions" class="bin_bout">
|
||
|
<div class="server-name">
|
||
|
Current ses
|
||
|
</div>
|
||
|
<div class="bytes" id="cur_sess">
|
||
|
{{bin_bout.2}}
|
||
|
</div>
|
||
|
<div class="server-name">
|
||
|
Total ses
|
||
|
</div>
|
||
|
<div class="bytes" id="total_sess">
|
||
|
{{bin_bout.3}}
|
||
|
</div>
|
||
|
</div>
|