]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/alertmanager-silence.ts
import ceph quincy 17.2.6
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / alertmanager-silence.ts
index b7b8862954baeb61433e8255a5725e3d5b836379..5f69f1e1e8164e51efbf9923dbb60e966334a35e 100644 (file)
@@ -1,3 +1,5 @@
+import { PrometheusRule } from './prometheus-alerts';
+
 export class AlertmanagerSilenceMatcher {
   name: string;
   value: any;
@@ -20,4 +22,5 @@ export class AlertmanagerSilence {
   status?: {
     state: 'expired' | 'active' | 'pending';
   };
+  silencedAlerts?: PrometheusRule[];
 }