Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 9x | <cd-table *ngIf="counters; else warning"
[data]="counters"
[columns]="columns"
columnMode="flex"
[autoSave]="false"
(fetchData)="getCounters($event)">
<ng-template #valueTpl let-row="row">
{{ row.value | dimless }} {{ row.unit }}
</ng-template>
</cd-table>
<ng-template #warning>
<cd-warning-panel i18n>Performance counters not available</cd-warning-panel>
</ng-template>
|