mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			102 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
| package api
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"github.com/grafana/grafana-plugin-sdk-go/data"
 | |
| 	"github.com/grafana/grafana/pkg/api/dtos"
 | |
| 	"github.com/grafana/grafana/pkg/models"
 | |
| 	eval "github.com/grafana/grafana/pkg/services/ngalert"
 | |
| 	"github.com/grafana/grafana/pkg/setting"
 | |
| 	"github.com/grafana/grafana/pkg/tsdb"
 | |
| 	"github.com/grafana/grafana/pkg/util"
 | |
| )
 | |
| 
 | |
| // POST /api/alert-definitions/eval
 | |
| func (hs *HTTPServer) ConditionEval(c *models.ReqContext, dto dtos.EvalAlertConditionCommand) Response {
 | |
| 	alertCtx, cancelFn := context.WithTimeout(context.Background(), setting.AlertingEvaluationTimeout)
 | |
| 	defer cancelFn()
 | |
| 
 | |
| 	alertExecCtx := eval.AlertExecCtx{Ctx: alertCtx, SignedInUser: c.SignedInUser}
 | |
| 
 | |
| 	fromStr := c.Query("from")
 | |
| 	if fromStr == "" {
 | |
| 		fromStr = "now-3h"
 | |
| 	}
 | |
| 
 | |
| 	toStr := c.Query("to")
 | |
| 	if toStr == "" {
 | |
| 		toStr = "now"
 | |
| 	}
 | |
| 
 | |
| 	execResult, err := dto.Condition.Execute(alertExecCtx, fromStr, toStr)
 | |
| 	if err != nil {
 | |
| 		return Error(400, "Failed to execute conditions", err)
 | |
| 	}
 | |
| 
 | |
| 	evalResults, err := eval.EvaluateExecutionResult(execResult)
 | |
| 	if err != nil {
 | |
| 		return Error(400, "Failed to evaluate results", err)
 | |
| 	}
 | |
| 
 | |
| 	frame := evalResults.AsDataFrame()
 | |
| 	df := tsdb.NewDecodedDataFrames([]*data.Frame{&frame})
 | |
| 	instances, err := df.Encoded()
 | |
| 	if err != nil {
 | |
| 		return Error(400, "Failed to encode result dataframes", err)
 | |
| 	}
 | |
| 
 | |
| 	return JSON(200, util.DynMap{
 | |
| 		"instances": instances,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // GET /api/alert-definitions/eval/:dashboardId/:panelId/:refId"
 | |
| func (hs *HTTPServer) AlertDefinitionEval(c *models.ReqContext) Response {
 | |
| 	dashboardID := c.ParamsInt64(":dashboardID")
 | |
| 	panelID := c.ParamsInt64(":panelID")
 | |
| 	conditionRefID := c.Params(":refID")
 | |
| 
 | |
| 	fromStr := c.Query("from")
 | |
| 	if fromStr == "" {
 | |
| 		fromStr = "now-3h"
 | |
| 	}
 | |
| 
 | |
| 	toStr := c.Query("to")
 | |
| 	if toStr == "" {
 | |
| 		toStr = "now"
 | |
| 	}
 | |
| 
 | |
| 	conditions, err := hs.AlertNG.LoadAlertCondition(dashboardID, panelID, conditionRefID, c.SignedInUser, c.SkipCache)
 | |
| 	if err != nil {
 | |
| 		return Error(400, "Failed to load conditions", err)
 | |
| 	}
 | |
| 
 | |
| 	alertCtx, cancelFn := context.WithTimeout(context.Background(), setting.AlertingEvaluationTimeout)
 | |
| 	defer cancelFn()
 | |
| 
 | |
| 	alertExecCtx := eval.AlertExecCtx{Ctx: alertCtx, SignedInUser: c.SignedInUser}
 | |
| 
 | |
| 	execResult, err := conditions.Execute(alertExecCtx, fromStr, toStr)
 | |
| 	if err != nil {
 | |
| 		return Error(400, "Failed to execute conditions", err)
 | |
| 	}
 | |
| 
 | |
| 	evalResults, err := eval.EvaluateExecutionResult(execResult)
 | |
| 	if err != nil {
 | |
| 		return Error(400, "Failed to evaluate results", err)
 | |
| 	}
 | |
| 
 | |
| 	frame := evalResults.AsDataFrame()
 | |
| 
 | |
| 	df := tsdb.NewDecodedDataFrames([]*data.Frame{&frame})
 | |
| 	instances, err := df.Encoded()
 | |
| 	if err != nil {
 | |
| 		return Error(400, "Failed to encode result dataframes", err)
 | |
| 	}
 | |
| 
 | |
| 	return JSON(200, util.DynMap{
 | |
| 		"instances": instances,
 | |
| 	})
 | |
| }
 |