mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
90 lines
2.3 KiB
TypeScript
90 lines
2.3 KiB
TypeScript
///<reference path="../../../headers/common.d.ts" />
|
|
|
|
import _ from 'lodash';
|
|
import $ from 'jquery';
|
|
import angular from 'angular';
|
|
|
|
export class AlertTabCtrl {
|
|
panel: any;
|
|
panelCtrl: any;
|
|
alerting: any;
|
|
metricTargets = [{ refId: '- select query -' } ];
|
|
operators = ['>', '<', '<=', '>='];
|
|
aggregators = ['avg', 'sum', 'min', 'max', 'median'];
|
|
|
|
defaultValues = {
|
|
aggregator: 'avg',
|
|
interval: '60s',
|
|
queryRange: '10m',
|
|
warnOperator: '>',
|
|
critOperator: '>',
|
|
queryRef: '- select query -'
|
|
};
|
|
|
|
/** @ngInject */
|
|
constructor($scope, private $timeout) {
|
|
$scope.alertTab = this; //HACK ATTACK!
|
|
this.panelCtrl = $scope.ctrl;
|
|
this.panel = this.panelCtrl.panel;
|
|
|
|
_.defaults(this.panel.alerting, this.defaultValues);
|
|
|
|
var defaultTitle = (this.panelCtrl.dashboard.title + ' ' + this.panel.title + ' alert');
|
|
this.panel.alerting.title = this.panel.alerting.title || defaultTitle;
|
|
|
|
this.panel.targets.map(target => {
|
|
this.metricTargets.push(target);
|
|
});
|
|
this.panel.alerting.queryRef = this.panel.alerting.queryRef || this.metricTargets[0].refId;
|
|
|
|
this.convertThresholdsToAlertThresholds();
|
|
}
|
|
|
|
convertThresholdsToAlertThresholds() {
|
|
if (this.panel.grid
|
|
&& this.panel.grid.threshold1
|
|
&& this.panel.alerting.warnLevel === undefined
|
|
) {
|
|
this.panel.alerting.warnOperator = '>';
|
|
this.panel.alerting.warnLevel = this.panel.grid.threshold1;
|
|
}
|
|
|
|
if (this.panel.grid
|
|
&& this.panel.grid.threshold2
|
|
&& this.panel.alerting.critLevel === undefined
|
|
) {
|
|
this.panel.alerting.critOperator = '>';
|
|
this.panel.alerting.critLevel = this.panel.grid.threshold2;
|
|
}
|
|
}
|
|
|
|
markAsDeleted() {
|
|
if (this.panel.alerting) {
|
|
this.panel.alerting = this.defaultValues;
|
|
}
|
|
}
|
|
|
|
thresholdsUpdated() {
|
|
if (this.panel.alerting.warnLevel) {
|
|
this.panel.grid.threshold1 = parseInt(this.panel.alerting.warnLevel);
|
|
}
|
|
|
|
if (this.panel.alerting.critLevel) {
|
|
this.panel.grid.threshold2 = parseInt(this.panel.alerting.critLevel);
|
|
}
|
|
|
|
this.panelCtrl.render();
|
|
}
|
|
}
|
|
|
|
/** @ngInject */
|
|
export function graphAlertEditor() {
|
|
'use strict';
|
|
return {
|
|
restrict: 'E',
|
|
scope: true,
|
|
templateUrl: 'public/app/plugins/panel/graph/partials/tab_alerting.html',
|
|
controller: AlertTabCtrl,
|
|
};
|
|
}
|