]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html
c1d33d8e0d243543429364674dfac62cf97ee055
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cephfs / cephfs-detail / cephfs-detail.component.html
1 <div class="row">
2 <div class="col-sm-6">
3 <legend i18n>Ranks</legend>
4 <cd-table [data]="data.ranks"
5 [columns]="columns.ranks"
6 [toolHeader]="false">
7 </cd-table>
8
9 <legend i18n>Standbys</legend>
10 <cd-table-key-value [data]="standbys">
11 </cd-table-key-value>
12 </div>
13
14 <div class="col-sm-6">
15 <legend i18n>Pools</legend>
16 <cd-table [data]="data.pools"
17 [columns]="columns.pools"
18 [toolHeader]="false">
19 </cd-table>
20 </div>
21 </div>
22
23 <legend i18n>MDS performance counters</legend>
24 <div class="row"
25 *ngFor="let mdsCounter of objectValues(data.mdsCounters); trackBy: trackByFn">
26 <div class="col-md-12">
27 <cd-cephfs-chart [mdsCounter]="mdsCounter"></cd-cephfs-chart>
28 </div>
29 </div>
30
31 <!-- templates -->
32 <ng-template #poolUsageTpl
33 let-row="row">
34 <cd-usage-bar [total]="row.size"
35 [used]="row.used"></cd-usage-bar>
36 </ng-template>
37
38 <ng-template #activityTmpl
39 let-row="row"
40 let-value="value">
41 {{ row.state === 'standby-replay' ? 'Evts' : 'Reqs' }}: {{ value | dimless }} /s
42 </ng-template>