]> 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.0 Octopus source
[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, please
10 provide the URL to the API of Prometheus' Alertmanager as described in the
11 <a href="{{docsUrl}}"
12 target="_blank">documentation</a>.</cd-alert-panel>
13 </tab>
14 <tab id="all-alerts"
15 heading="All Alerts"
16 (selectTab)="setFragment($event)"
17 i18n-heading>
18 <cd-rules-list *ngIf="isPrometheusConfigured"
19 [data]="prometheusAlertService.rules"></cd-rules-list>
20 <cd-alert-panel type="info"
21 *ngIf="!isPrometheusConfigured">To see all configured Prometheus alerts, please provide the URL to
22 the API of Prometheus as described in the
23 <a href="{{docsUrl}}"
24 target="_blank">documentation</a>.</cd-alert-panel>
25 </tab>
26 <tab id="silences"
27 heading="Silences"
28 (selectTab)="setFragment($event)"
29 i18n-heading>
30 <cd-silences-list *ngIf="isAlertmanagerConfigured"></cd-silences-list>
31 <cd-alert-panel *ngIf="!isAlertmanagerConfigured"
32 type="info"
33 i18n>To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as
34 described in the
35 <a href="{{docsUrl}}"
36 target="_blank">documentation</a>.</cd-alert-panel>
37 </tab>
38 </tabset>