]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/prometheus/alert-list/alert-list.component.html
update download target update for octopus release
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / prometheus / alert-list / alert-list.component.html
CommitLineData
494da23a
TL
1<cd-prometheus-tabs></cd-prometheus-tabs>
2
11fdf7f2
TL
3<cd-table [data]="prometheusAlertService.alerts"
4 [columns]="columns"
5 identifier="fingerprint"
6 [forceIdentifier]="true"
7 [customCss]="customCss"
8 selectionType="single"
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>
11fdf7f2
TL
15 <tabset cdTableDetail *ngIf="selection.hasSingleSelection">
16 <tab i18n-heading
17 heading="Details">
18 <cd-table-key-value [renderObjects]="true"
19 [hideEmpty]="true"
20 [appendParentKey]="false"
21 [data]="selection.first()"
22 [customCss]="customCss"
23 [autoReload]="false">
24 </cd-table-key-value>
25 </tab>
26 </tabset>
27</cd-table>
28
29<ng-template #externalLinkTpl
30 let-row="row"
31 let-value="value">
32 <a [href]="value" target="_blank"><i class="fa fa-line-chart"></i> Source</a>
33</ng-template>
34