diff --git a/pkg/services/alerting/alert_rule.go b/pkg/services/alerting/alert_rule.go
index 7c9dee551e8..26d8fab092a 100644
--- a/pkg/services/alerting/alert_rule.go
+++ b/pkg/services/alerting/alert_rule.go
@@ -26,6 +26,10 @@ type AlertRule struct {
Transformer transformer.Transformer
}
+func getTimeDurationStringToSeconds(str string) int64 {
+ return 60
+}
+
func NewAlertRuleFromDBModel(ruleDef *m.Alert) (*AlertRule, error) {
model := &AlertRule{}
model.Id = ruleDef.Id
@@ -40,13 +44,13 @@ func NewAlertRuleFromDBModel(ruleDef *m.Alert) (*AlertRule, error) {
Level: critical.Get("level").MustFloat64(),
}
- warning := ruleDef.Expression.Get("warning")
+ warning := ruleDef.Expression.Get("warn")
model.Warning = Level{
Operator: warning.Get("op").MustString(),
Level: warning.Get("level").MustFloat64(),
}
- model.Frequency = ruleDef.Expression.Get("frequency").MustInt64()
+ model.Frequency = getTimeDurationStringToSeconds(ruleDef.Expression.Get("frequency").MustString())
model.Transform = ruleDef.Expression.Get("transform").Get("type").MustString()
model.TransformParams = *ruleDef.Expression.Get("transform")
diff --git a/pkg/services/alerting/commands.go b/pkg/services/alerting/commands.go
index 9577366afaf..4e269aca695 100644
--- a/pkg/services/alerting/commands.go
+++ b/pkg/services/alerting/commands.go
@@ -1,11 +1,8 @@
package alerting
import (
- "fmt"
-
"github.com/grafana/grafana/pkg/bus"
m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/services/alerting/transformers"
)
type UpdateDashboardAlertsCommand struct {
@@ -39,56 +36,3 @@ func updateDashboardAlerts(cmd *UpdateDashboardAlertsCommand) error {
return nil
}
-
-func getTimeDurationStringToSeconds(str string) int64 {
- return 60
-}
-
-func ConvetAlertModelToAlertRule(ruleDef *m.Alert) (*AlertRule, error) {
- model := &AlertRule{}
- model.Id = ruleDef.Id
- model.OrgId = ruleDef.OrgId
- model.Name = ruleDef.Name
- model.Description = ruleDef.Description
- model.State = ruleDef.State
-
- critical := ruleDef.Expression.Get("critical")
- model.Critical = Level{
- Operator: critical.Get("op").MustString(),
- Level: critical.Get("level").MustFloat64(),
- }
-
- warning := ruleDef.Expression.Get("warning")
- model.Warning = Level{
- Operator: warning.Get("op").MustString(),
- Level: warning.Get("level").MustFloat64(),
- }
-
- model.Frequency = getTimeDurationStringToSeconds(ruleDef.Expression.Get("frequency").MustString())
- model.Transform = ruleDef.Expression.Get("transform").Get("type").MustString()
- model.TransformParams = *ruleDef.Expression.Get("transform")
-
- if model.Transform == "aggregation" {
- method := ruleDef.Expression.Get("transform").Get("method").MustString()
- model.Transformer = transformer.NewAggregationTransformer(method)
- }
-
- query := ruleDef.Expression.Get("query")
- model.Query = AlertQuery{
- Query: query.Get("query").MustString(),
- DatasourceId: query.Get("datasourceId").MustInt64(),
- From: query.Get("from").MustString(),
- To: query.Get("to").MustString(),
- Aggregator: query.Get("agg").MustString(),
- }
-
- if model.Query.Query == "" {
- return nil, fmt.Errorf("missing query.query")
- }
-
- if model.Query.DatasourceId == 0 {
- return nil, fmt.Errorf("missing query.datasourceId")
- }
-
- return model, nil
-}
diff --git a/pkg/services/alerting/extractor.go b/pkg/services/alerting/extractor.go
index 6a0883c16fa..ae360973fad 100644
--- a/pkg/services/alerting/extractor.go
+++ b/pkg/services/alerting/extractor.go
@@ -57,12 +57,9 @@ func (e *DashAlertExtractor) GetAlerts() ([]*m.Alert, error) {
for _, panelObj := range row.Get("panels").MustArray() {
panel := simplejson.NewFromAny(panelObj)
- jsonAlert := panel.Get("alert")
+ jsonAlert, hasAlert := panel.CheckGet("alert")
- // check if marked for deletion
- deleted := jsonAlert.Get("deleted").MustBool()
- if deleted {
- e.log.Info("Deleted alert rule found")
+ if !hasAlert {
continue
}
diff --git a/pkg/services/alerting/extractor_test.go b/pkg/services/alerting/extractor_test.go
index 069489dfb23..7cab1d94c7c 100644
--- a/pkg/services/alerting/extractor_test.go
+++ b/pkg/services/alerting/extractor_test.go
@@ -55,7 +55,7 @@ func TestAlertRuleExtraction(t *testing.T) {
"method": "avg",
"type": "aggregation"
},
- "warning": {
+ "warn": {
"level": 10,
"op": ">"
}
@@ -90,7 +90,7 @@ func TestAlertRuleExtraction(t *testing.T) {
"method": "avg",
"name": "aggregation"
},
- "warning": {
+ "warn": {
"level": 10,
"op": ">"
}
@@ -149,10 +149,7 @@ func TestAlertRuleExtraction(t *testing.T) {
],
"title": "Broken influxdb panel",
"transform": "table",
- "type": "table",
- "alert": {
- "deleted": true
- }
+ "type": "table"
}
],
"title": "New row"
@@ -185,7 +182,7 @@ func TestAlertRuleExtraction(t *testing.T) {
return nil
})
- alerts, err := extractor.GetRuleModels()
+ alerts, err := extractor.GetAlerts()
Convey("Get rules without error", func() {
So(err, ShouldBeNil)
diff --git a/pkg/services/alerting/reader.go b/pkg/services/alerting/reader.go
index 7f8f6b2c5de..db7da930746 100644
--- a/pkg/services/alerting/reader.go
+++ b/pkg/services/alerting/reader.go
@@ -49,7 +49,7 @@ func (arr *AlertRuleReader) Fetch() []*AlertRule {
res := make([]*AlertRule, len(cmd.Result))
for i, ruleDef := range cmd.Result {
- model, _ := ConvetAlertModelToAlertRule(ruleDef)
+ model, _ := NewAlertRuleFromDBModel(ruleDef)
res[i] = model
}
diff --git a/pkg/services/sqlstore/alert_rule_parser_test.go b/pkg/services/sqlstore/alert_rule_parser_test.go
deleted file mode 100644
index 8ec7c24429b..00000000000
--- a/pkg/services/sqlstore/alert_rule_parser_test.go
+++ /dev/null
@@ -1,55 +0,0 @@
-package sqlstore
-
-import (
- "testing"
-
- "github.com/grafana/grafana/pkg/components/simplejson"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/services/alerting"
- . "github.com/smartystreets/goconvey/convey"
-)
-
-func TestAlertRuleModelParsing(t *testing.T) {
-
- Convey("Parsing alertRule from expression", t, func() {
- alertRuleDAO := &m.Alert{}
- json, _ := simplejson.NewJson([]byte(`
- {
- "frequency": 10,
- "warning": {
- "op": ">",
- "level": 10
- },
- "critical": {
- "op": ">",
- "level": 20
- },
- "query": {
- "refId": "A",
- "from": "5m",
- "to": "now",
- "datasourceId": 1,
- "query": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
- },
- "transform": {
- "type": "aggregation",
- "method": "avg"
- }
- }`))
-
- alertRuleDAO.Name = "Test"
- alertRuleDAO.Expression = json
- rule, _ := alerting.ConvetAlertModelToAlertRule(alertRuleDAO)
-
- Convey("Confirm that all properties are set", func() {
- So(rule.Query.Query, ShouldEqual, "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)")
- So(rule.Query.From, ShouldEqual, "5m")
- So(rule.Query.To, ShouldEqual, "now")
- So(rule.Query.DatasourceId, ShouldEqual, 1)
- So(rule.Warning.Level, ShouldEqual, 10)
- So(rule.Warning.Operator, ShouldEqual, ">")
- So(rule.Critical.Level, ShouldEqual, 20)
- So(rule.Critical.Operator, ShouldEqual, ">")
- })
- })
-}
diff --git a/public/app/features/dashboard/viewStateSrv.js b/public/app/features/dashboard/viewStateSrv.js
index 035bfb6ae6e..fe1277c59c0 100644
--- a/public/app/features/dashboard/viewStateSrv.js
+++ b/public/app/features/dashboard/viewStateSrv.js
@@ -120,25 +120,28 @@ function (angular, _, $) {
if (this.panelScopes.length === 0) { return; }
if (this.dashboard.meta.fullscreen) {
- if (this.fullscreenPanel) {
- this.leaveFullscreen(false);
- }
var panelScope = this.getPanelScope(this.state.panelId);
- // panel could be about to be created/added and scope does
- // not exist yet
if (!panelScope) {
return;
}
+ if (this.fullscreenPanel) {
+ // if already fullscreen
+ if (this.fullscreenPanel === panelScope) {
+ return;
+ } else {
+ this.leaveFullscreen(false);
+ }
+ }
+
if (!panelScope.ctrl.editModeInitiated) {
panelScope.ctrl.initEditMode();
}
- this.enterFullscreen(panelScope);
- return;
- }
-
- if (this.fullscreenPanel) {
+ if (!panelScope.ctrl.fullscreen) {
+ this.enterFullscreen(panelScope);
+ }
+ } else if (this.fullscreenPanel) {
this.leaveFullscreen(true);
}
};
diff --git a/public/app/features/panel/panel_ctrl.ts b/public/app/features/panel/panel_ctrl.ts
index 0f253b5048a..bcb1980f854 100644
--- a/public/app/features/panel/panel_ctrl.ts
+++ b/public/app/features/panel/panel_ctrl.ts
@@ -152,8 +152,8 @@ export class PanelCtrl {
calculatePanelHeight() {
if (this.fullscreen) {
var docHeight = $(window).height();
- var editHeight = Math.floor(docHeight * 0.3);
- var fullscreenHeight = Math.floor(docHeight * 0.7);
+ var editHeight = Math.floor(docHeight * 0.4);
+ var fullscreenHeight = Math.floor(docHeight * 0.6);
this.containerHeight = this.editMode ? editHeight : fullscreenHeight;
} else {
this.containerHeight = this.panel.height || this.row.height;
diff --git a/public/app/plugins/panel/graph/alert_handle.ts b/public/app/plugins/panel/graph/alert_handle.ts
new file mode 100644
index 00000000000..c1914196e89
--- /dev/null
+++ b/public/app/plugins/panel/graph/alert_handle.ts
@@ -0,0 +1,135 @@
+///