]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
8600c3df2ec9131a6db1b846c344022431f378ec
[ceph-ci.git] /
1 <cd-prometheus-tabs></cd-prometheus-tabs>
2
3 <cd-alert-panel *ngIf="!isPrometheusConfigured"
4                 type="info"
5                 i18n>To see all configured Prometheus alerts, please
6   provide the URL to the API of Prometheus as described in
7   the <a href="{{docsUrl}}"
8          target="_blank">documentation</a>.
9 </cd-alert-panel>
10
11 <cd-table *ngIf="isPrometheusConfigured"
12           [data]="prometheusAlertService.rules"
13           [columns]="columns"
14           [hasDetails]="true"
15           (updateSelection)="setExpandedRow($event)"
16           [selectionType]="'single'">
17   <cd-table-key-value cdTableDetail
18                       *ngIf="expandedRow"
19                       [data]="expandedRow"
20                       [renderObjects]="true"
21                       [hideKeys]="hideKeys">
22   </cd-table-key-value>
23 </cd-table>