Files
Athou_commafeed/src/main/app/templates/_metrics.meter.html

14 lines
315 B
HTML
Raw Normal View History

2013-08-23 12:46:35 +02:00
<div>
<span>{{label}}</span>
<dl class="dl-horizontal">
<dt>Mean</dt>
2021-01-30 22:40:31 +01:00
<dd>{{metric.mean_rate | number:2}}</dd>
2013-11-27 12:13:18 +01:00
2015-08-14 12:58:55 +02:00
<dt>1/5/15 min</dt>
2021-01-30 22:40:31 +01:00
<dd>{{metric.m1_rate | number:2}} {{metric.m5_rate | number:2}} {{metric.m15_rate | number:2}}</dd>
2013-11-27 12:13:18 +01:00
2013-08-23 12:46:35 +02:00
<dt>Total</dt>
<dd>{{metric.count}}</dd>
2013-11-27 12:13:18 +01:00
2013-08-23 12:46:35 +02:00
</dl>
</div>