]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
862bf205c602977f2b7c5ad7fbb86ce74cdb95e1
[ceph.git] /
1 <cd-table *ngIf="counters; else warning"
2           [data]="counters"
3           [columns]="columns"
4           columnMode="flex"
5           [autoSave]="false"
6           (fetchData)="getCounters()">
7   <ng-template #valueTpl let-row="row">
8     {{ row.value | dimless }} {{ row.unit }}
9   </ng-template>
10 </cd-table>
11 <ng-template #warning>
12   <cd-warning-panel i18n>
13     Performance counters not available
14   </cd-warning-panel>
15 </ng-template>