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