diff --git a/public/app/features/alerts/partials/alert_log.html b/public/app/features/alerts/partials/alert_log.html index 512432267c4..80c2686b9eb 100644 --- a/public/app/features/alerts/partials/alert_log.html +++ b/public/app/features/alerts/partials/alert_log.html @@ -6,6 +6,55 @@

Alert history for {{ctrl.alert.title}}

+
+
Thresholds
+
+ + + Warn level + +
+ {{ctrl.alert.warnOperator}} +
+
+ {{ctrl.alert.warnLevel}} +
+
+
+ + + Critical level + +
+ {{ctrl.alert.critOperator}} +
+
+ {{ctrl.alert.critLevel}} +
+
+
+ +
+
Aggregators
+
+ + Aggregator + +
+ {{ctrl.alert.aggregator}} +
+
+
+ Query range (seconds) + {{ctrl.alert.queryRange}} +
+ +
+ Frequency (seconds) + {{ctrl.alert.frequency}} +
+
+ diff --git a/public/app/plugins/panel/graph/alert_tab_ctrl.ts b/public/app/plugins/panel/graph/alert_tab_ctrl.ts index f494644f4ce..8e623e6f4aa 100644 --- a/public/app/plugins/panel/graph/alert_tab_ctrl.ts +++ b/public/app/plugins/panel/graph/alert_tab_ctrl.ts @@ -14,8 +14,8 @@ export class AlertTabCtrl { defaultValues = { aggregator: 'avg', - interval: '60s', - queryRange: '10m', + frequency: 10, + queryRange: 3600, warnOperator: '>', critOperator: '>', queryRef: '- select query -'
Status