cacheStats.tpl.html 612 Bytes
Newer Older
1
<table class="table">
2 3 4 5 6 7 8 9 10 11 12 13 14 15
	<tr ng-repeat-start="cache in $ctrl.caches track by cache.name">
		<td rowspan="2" ng-bind="cache.name"></td>
		<td>size</td>
		<td ng-bind="cache.size">
	</tr>
	<tr ng-repeat-end ng-if="cache.hitRatio || cache.missRatio">
		<td colspan="2">
			<div class="progress" style="margin-bottom: 0px;">
				<div ng-if="cache.hitRatio" class="bar bar-success" ng-style="{width: cache.hitRatio + '%'}">{{cache.hitRatio}}% hits</div>
				<div ng-if="cache.missRatio" class="bar bar-danger" ng-style="{width: cache.missRatio + '%'}">{{cache.missRatio}}% misses</div>
			</div>
		</td>
	</tr>
</table>