]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html
8e70b94a4ca89dac8e4bd6c74236033619dd3cd7
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / services / service-daemon-list / service-daemon-list.component.html
1 <cd-orchestrator-doc-panel *ngIf="showDocPanel"></cd-orchestrator-doc-panel>
2 <cd-table *ngIf="hasOrchestrator"
3 #daemonsTable
4 [data]="daemons"
5 [columns]="columns"
6 columnMode="flex"
7 [autoReload]="5000"
8 (fetchData)="getDaemons($event)">
9 </cd-table>
10
11 <ng-template #statusTpl
12 let-row="row">
13 <span class="badge"
14 [ngClass]="row | pipeFunction:getStatusClass">
15 {{ row.status_desc }}
16 </span>
17 </ng-template>