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 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 4x | <tabset #tabsetChild
cdTableDetail
*ngIf="selection.hasSingleSelection">
<tab i18n-heading
heading="Details">
<cd-table-key-value [renderObjects]="true"
[data]="selection.first()"
[autoReload]="false">
</cd-table-key-value>
</tab>
<tab i18n-heading
*ngIf="permissions.grafana.read"
heading="Performance Details">
<cd-grafana [grafanaPath]="'ceph-pool-detail?var-pool_name='
+ selection.first()['pool_name']"
uid="8ypfkWpik"
grafanaStyle="one">
</cd-grafana>
</tab>
<tab *ngIf="selection.first().type === 'replicated'"
i18n-heading
heading="Configuration">
<cd-rbd-configuration-table [data]="selectedPoolConfiguration"></cd-rbd-configuration-table>
</tab>
<tab i18n-heading
*ngIf="selection.first()['tiers'].length > 0"
heading="Cache Tiers Details">
<cd-table [data]="cacheTiers"
[columns]="cacheTierColumns"
[autoSave]="false"
columnMode="flex">
</cd-table>
</tab>
</tabset>
|