Files
Athou_commafeed/commafeed-client/src/main/app/templates/_metrics.meter.html

14 lines
360 B
HTML
Raw Normal View History

2013-08-23 12:46:35 +02:00
<div>
2022-01-01 21:26:02 +01:00
<span>{{label}}</span>
<dl class="dl-horizontal">
<dt>Mean</dt>
<dd>{{metric.mean_rate | number:2}}</dd>
2013-11-27 12:13:18 +01:00
2022-01-01 21:26:02 +01:00
<dt>1/5/15 min</dt>
<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
2022-01-01 21:26:02 +01:00
<dt>Total</dt>
<dd>{{metric.count}}</dd>
</dl>
</div>