]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cephfs / cephfs-tabs / cephfs-tabs.component.html
1 <tabset *ngIf="selection">
2 <tab i18n-heading
3 (selectTab)="softRefresh()"
4 heading="Details">
5 <cd-cephfs-detail [data]="details">
6 </cd-cephfs-detail>
7 </tab>
8 <tab (selectTab)="softRefresh()">
9 <ng-template tabHeading>
10 <ng-container i18n>Clients</ng-container>
11 <span class="badge badge-pill badge-tab ml-1">{{ clients.data.length }}</span>
12 </ng-template>
13 <cd-cephfs-clients [id]="id"
14 [clients]="clients"
15 (triggerApiUpdate)="refresh()">
16 </cd-cephfs-clients>
17 </tab>
18 <tab i18n-heading
19 (selectTab)="directoriesSelected = true"
20 heading="Directories">
21 <cd-cephfs-directories *ngIf="directoriesSelected"
22 [id]="id">
23 </cd-cephfs-directories>
24 </tab>
25 <tab i18n-heading
26 *ngIf="grafanaPermission.read && grafanaId"
27 heading="Performance Details">
28 <cd-grafana [grafanaPath]="'mds-performance?var-mds_servers=mds.' + grafanaId"
29 uid="tbO9LAiZz"
30 grafanaStyle="one">
31 </cd-grafana>
32 </tab>
33 </tabset>
34