]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/prometheus/monitoring-list/monitoring-list.component.html
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / prometheus / monitoring-list / monitoring-list.component.html
1 <tabset #tabs>
2 <tab id="active-alerts"
3 heading="Active Alerts"
4 (selectTab)="setFragment($event)"
5 i18n-heading>
6 <cd-active-alert-list *ngIf="isAlertmanagerConfigured"></cd-active-alert-list>
7 <cd-alert-panel type="info"
8 i18n
9 *ngIf="!isAlertmanagerConfigured">To see all active Prometheus alerts,
10 please provide the URL to the API of Prometheus' Alertmanager as described in
11 the <cd-doc section="prometheus"></cd-doc>.</cd-alert-panel>
12 </tab>
13 <tab id="all-alerts"
14 heading="All Alerts"
15 (selectTab)="setFragment($event)"
16 i18n-heading>
17 <cd-rules-list *ngIf="isPrometheusConfigured"
18 [data]="prometheusAlertService.rules"></cd-rules-list>
19 <cd-alert-panel type="info"
20 *ngIf="!isPrometheusConfigured">To see all configured Prometheus alerts,
21 please provide the URL to the API of Prometheus as described in
22 the <cd-doc section="prometheus"></cd-doc>.</cd-alert-panel>
23 </tab>
24 <tab id="silences"
25 heading="Silences"
26 (selectTab)="setFragment($event)"
27 i18n-heading>
28 <cd-silences-list *ngIf="isAlertmanagerConfigured"></cd-silences-list>
29 <cd-alert-panel *ngIf="!isAlertmanagerConfigured"
30 type="info"
31 i18n>To enable Silences, please provide the URL to the API
32 of the Prometheus' Alertmanager as described in
33 the <cd-doc section="prometheus"></cd-doc>.</cd-alert-panel>
34 </tab>
35 </tabset>