]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-details/pool-details.component.html
bump version to 15.2.11-pve1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / pool / pool-details / pool-details.component.html
CommitLineData
11fdf7f2
TL
1<tabset #tabsetChild
2 cdTableDetail
e306af50 3 *ngIf="selection">
11fdf7f2
TL
4 <tab i18n-heading
5 heading="Details">
6 <cd-table-key-value [renderObjects]="true"
e306af50 7 [data]="filterNonPoolData(selection)"
11fdf7f2
TL
8 [autoReload]="false">
9 </cd-table-key-value>
10 </tab>
11 <tab i18n-heading
12 *ngIf="permissions.grafana.read"
13 heading="Performance Details">
14 <cd-grafana [grafanaPath]="'ceph-pool-detail?var-pool_name='
e306af50 15 + selection['pool_name']"
81eedcae 16 uid="-xyV8KCiz"
f91f0fd5 17 grafanaStyle="three">
11fdf7f2
TL
18 </cd-grafana>
19 </tab>
e306af50 20 <tab *ngIf="selection.type === 'replicated'"
11fdf7f2
TL
21 i18n-heading
22 heading="Configuration">
23 <cd-rbd-configuration-table [data]="selectedPoolConfiguration"></cd-rbd-configuration-table>
24 </tab>
25 <tab i18n-heading
e306af50 26 *ngIf="selection['tiers']?.length > 0"
11fdf7f2
TL
27 heading="Cache Tiers Details">
28 <cd-table [data]="cacheTiers"
29 [columns]="cacheTierColumns"
30 [autoSave]="false"
31 columnMode="flex">
32 </cd-table>
33 </tab>
34</tabset>