]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / prometheus / active-alert-list / active-alert-list.component.html
CommitLineData
11fdf7f2
TL
1<cd-table [data]="prometheusAlertService.alerts"
2 [columns]="columns"
3 identifier="fingerprint"
4 [forceIdentifier]="true"
5 [customCss]="customCss"
6 selectionType="single"
e306af50
TL
7 [hasDetails]="true"
8 (setExpandedRow)="setExpandedRow($event)"
11fdf7f2 9 (updateSelection)="updateSelection($event)">
494da23a
TL
10 <cd-table-actions class="table-actions"
11 [permission]="permission"
12 [selection]="selection"
13 [tableActions]="tableActions">
14 </cd-table-actions>
e306af50
TL
15
16 <cd-table-key-value cdTableDetail
17 *ngIf="expandedRow"
18 [renderObjects]="true"
19 [hideEmpty]="true"
20 [appendParentKey]="false"
21 [data]="expandedRow"
22 [customCss]="customCss"
23 [autoReload]="false">
24 </cd-table-key-value>
11fdf7f2
TL
25</cd-table>
26
27<ng-template #externalLinkTpl
28 let-row="row"
29 let-value="value">
9f95a23c
TL
30 <a [href]="value"
31 target="_blank"><i [ngClass]="[icons.lineChart]"></i> Source</a>
11fdf7f2 32</ng-template>