]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html
import ceph quincy 17.2.6
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cephfs / cephfs-detail / cephfs-detail.component.html
CommitLineData
9f95a23c
TL
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>
11fdf7f2 8
9f95a23c
TL
9 <legend i18n>Standbys</legend>
10 <cd-table-key-value [data]="standbys">
11 </cd-table-key-value>
12 </div>
11fdf7f2 13
9f95a23c
TL
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>
11fdf7f2 22
9f95a23c
TL
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>
11fdf7f2
TL
30
31<!-- templates -->
32<ng-template #poolUsageTpl
33 let-row="row">
f6b5b4d7 34 <cd-usage-bar [total]="row.size"
39ae355f
TL
35 [used]="row.used"
36 [title]="row.pool_name"></cd-usage-bar>
11fdf7f2
TL
37</ng-template>
38
39<ng-template #activityTmpl
40 let-row="row"
41 let-value="value">
42 {{ row.state === 'standby-replay' ? 'Evts' : 'Reqs' }}: {{ value | dimless }} /s
43</ng-template>