]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/hosts/hosts.component.html
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / hosts / hosts.component.html
1 <tabset>
2 <tab i18n-heading
3 heading="Hosts List">
4 <cd-table [data]="hosts"
5 [columns]="columns"
6 columnMode="flex"
7 (fetchData)="getHosts($event)"
8 selectionType="single"
9 (updateSelection)="updateSelection($event)">
10 <ng-template #servicesTpl let-value="value">
11 <span *ngFor="let service of value; last as isLast">
12 <a [routerLink]="[service.cdLink]"
13 [queryParams]="cdParams"
14 *ngIf="service.canRead">{{ service.type }}.{{ service.id }}
15 </a>
16 <span *ngIf="!service.canRead">
17 {{ service.type }}.{{ service.id }}
18 </span>
19 {{ !isLast ? ", " : "" }}
20 </span>
21 </ng-template>
22 <cd-host-details cdTableDetail
23 [selection]="selection">
24 </cd-host-details>
25 </cd-table>
26 </tab>
27 <tab i18n-heading
28 *ngIf="permissions.grafana.read"
29 heading="Overall Performance">
30 <cd-grafana [grafanaPath]="'host-overview?'"
31 uid="lxnjcTAmk"
32 grafanaStyle="two">
33 </cd-grafana>
34 </tab>
35 </tabset>