mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			270 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			270 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			Go
		
	
	
	
| package api
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"errors"
 | |
| 	"sort"
 | |
| 
 | |
| 	"github.com/grafana/grafana/pkg/expr"
 | |
| 	"github.com/grafana/grafana/pkg/models"
 | |
| 
 | |
| 	"github.com/grafana/grafana/pkg/api/dtos"
 | |
| 	"github.com/grafana/grafana/pkg/api/response"
 | |
| 	"github.com/grafana/grafana/pkg/bus"
 | |
| 	"github.com/grafana/grafana/pkg/components/simplejson"
 | |
| 	"github.com/grafana/grafana/pkg/tsdb"
 | |
| 	"github.com/grafana/grafana/pkg/tsdb/testdatasource"
 | |
| 	"github.com/grafana/grafana/pkg/util"
 | |
| )
 | |
| 
 | |
| // QueryMetricsV2 returns query metrics.
 | |
| // POST /api/ds/query   DataSource query w/ expressions
 | |
| func (hs *HTTPServer) QueryMetricsV2(c *models.ReqContext, reqDTO dtos.MetricRequest) response.Response {
 | |
| 	if len(reqDTO.Queries) == 0 {
 | |
| 		return response.Error(400, "No queries found in query", nil)
 | |
| 	}
 | |
| 
 | |
| 	request := &tsdb.TsdbQuery{
 | |
| 		TimeRange: tsdb.NewTimeRange(reqDTO.From, reqDTO.To),
 | |
| 		Debug:     reqDTO.Debug,
 | |
| 		User:      c.SignedInUser,
 | |
| 		Queries:   make([]*tsdb.Query, 0, len(reqDTO.Queries)),
 | |
| 	}
 | |
| 
 | |
| 	// Loop to see if we have an expression.
 | |
| 	for _, query := range reqDTO.Queries {
 | |
| 		if query.Get("datasource").MustString("") == expr.DatasourceName {
 | |
| 			return hs.handleExpressions(c, reqDTO)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	var ds *models.DataSource
 | |
| 	for i, query := range reqDTO.Queries {
 | |
| 		hs.log.Debug("Processing metrics query", "query", query)
 | |
| 
 | |
| 		datasourceID, err := query.Get("datasourceId").Int64()
 | |
| 		if err != nil {
 | |
| 			hs.log.Debug("Can't process query since it's missing data source ID")
 | |
| 			return response.Error(400, "Query missing data source ID", nil)
 | |
| 		}
 | |
| 
 | |
| 		// For mixed datasource case, each data source is sent in a single request.
 | |
| 		// So only the datasource from the first query is needed. As all requests
 | |
| 		// should be the same data source.
 | |
| 		if i == 0 {
 | |
| 			ds, err = hs.DatasourceCache.GetDatasource(datasourceID, c.SignedInUser, c.SkipCache)
 | |
| 			if err != nil {
 | |
| 				return hs.handleGetDataSourceError(err, datasourceID)
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		request.Queries = append(request.Queries, &tsdb.Query{
 | |
| 			RefId:         query.Get("refId").MustString("A"),
 | |
| 			MaxDataPoints: query.Get("maxDataPoints").MustInt64(100),
 | |
| 			IntervalMs:    query.Get("intervalMs").MustInt64(1000),
 | |
| 			QueryType:     query.Get("queryType").MustString(""),
 | |
| 			Model:         query,
 | |
| 			DataSource:    ds,
 | |
| 		})
 | |
| 	}
 | |
| 
 | |
| 	resp, err := tsdb.HandleRequest(c.Req.Context(), ds, request)
 | |
| 	if err != nil {
 | |
| 		return response.Error(500, "Metric request error", err)
 | |
| 	}
 | |
| 
 | |
| 	statusCode := 200
 | |
| 	for _, res := range resp.Results {
 | |
| 		if res.Error != nil {
 | |
| 			res.ErrorString = res.Error.Error()
 | |
| 			resp.Message = res.ErrorString
 | |
| 			statusCode = 400
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return response.JSONStreaming(statusCode, resp)
 | |
| }
 | |
| 
 | |
| // handleExpressions handles POST /api/ds/query when there is an expression.
 | |
| func (hs *HTTPServer) handleExpressions(c *models.ReqContext, reqDTO dtos.MetricRequest) response.Response {
 | |
| 	request := &tsdb.TsdbQuery{
 | |
| 		TimeRange: tsdb.NewTimeRange(reqDTO.From, reqDTO.To),
 | |
| 		Debug:     reqDTO.Debug,
 | |
| 		User:      c.SignedInUser,
 | |
| 		Queries:   make([]*tsdb.Query, 0, len(reqDTO.Queries)),
 | |
| 	}
 | |
| 
 | |
| 	for _, query := range reqDTO.Queries {
 | |
| 		hs.log.Debug("Processing metrics query", "query", query)
 | |
| 		name := query.Get("datasource").MustString("")
 | |
| 
 | |
| 		datasourceID, err := query.Get("datasourceId").Int64()
 | |
| 		if err != nil {
 | |
| 			hs.log.Debug("Can't process query since it's missing data source ID")
 | |
| 			return response.Error(400, "Query missing data source ID", nil)
 | |
| 		}
 | |
| 
 | |
| 		if name != expr.DatasourceName {
 | |
| 			// Expression requests have everything in one request, so need to check
 | |
| 			// all data source queries for possible permission / not found issues.
 | |
| 			if _, err = hs.DatasourceCache.GetDatasource(datasourceID, c.SignedInUser, c.SkipCache); err != nil {
 | |
| 				return hs.handleGetDataSourceError(err, datasourceID)
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		request.Queries = append(request.Queries, &tsdb.Query{
 | |
| 			RefId:         query.Get("refId").MustString("A"),
 | |
| 			MaxDataPoints: query.Get("maxDataPoints").MustInt64(100),
 | |
| 			IntervalMs:    query.Get("intervalMs").MustInt64(1000),
 | |
| 			QueryType:     query.Get("queryType").MustString(""),
 | |
| 			Model:         query,
 | |
| 		})
 | |
| 	}
 | |
| 
 | |
| 	exprService := expr.Service{Cfg: hs.Cfg}
 | |
| 	resp, err := exprService.WrapTransformData(c.Req.Context(), request)
 | |
| 	if err != nil {
 | |
| 		return response.Error(500, "expression request error", err)
 | |
| 	}
 | |
| 
 | |
| 	statusCode := 200
 | |
| 	for _, res := range resp.Results {
 | |
| 		if res.Error != nil {
 | |
| 			res.ErrorString = res.Error.Error()
 | |
| 			resp.Message = res.ErrorString
 | |
| 			statusCode = 400
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return response.JSONStreaming(statusCode, resp)
 | |
| }
 | |
| 
 | |
| func (hs *HTTPServer) handleGetDataSourceError(err error, datasourceID int64) *response.NormalResponse {
 | |
| 	hs.log.Debug("Encountered error getting data source", "err", err, "id", datasourceID)
 | |
| 	if errors.Is(err, models.ErrDataSourceAccessDenied) {
 | |
| 		return response.Error(403, "Access denied to data source", err)
 | |
| 	}
 | |
| 	if errors.Is(err, models.ErrDataSourceNotFound) {
 | |
| 		return response.Error(400, "Invalid data source ID", err)
 | |
| 	}
 | |
| 	return response.Error(500, "Unable to load data source metadata", err)
 | |
| }
 | |
| 
 | |
| // QueryMetrics returns query metrics
 | |
| // POST /api/tsdb/query
 | |
| func (hs *HTTPServer) QueryMetrics(c *models.ReqContext, reqDto dtos.MetricRequest) response.Response {
 | |
| 	timeRange := tsdb.NewTimeRange(reqDto.From, reqDto.To)
 | |
| 
 | |
| 	if len(reqDto.Queries) == 0 {
 | |
| 		return response.Error(400, "No queries found in query", nil)
 | |
| 	}
 | |
| 
 | |
| 	datasourceId, err := reqDto.Queries[0].Get("datasourceId").Int64()
 | |
| 	if err != nil {
 | |
| 		return response.Error(400, "Query missing datasourceId", nil)
 | |
| 	}
 | |
| 
 | |
| 	ds, err := hs.DatasourceCache.GetDatasource(datasourceId, c.SignedInUser, c.SkipCache)
 | |
| 	if err != nil {
 | |
| 		return hs.handleGetDataSourceError(err, datasourceId)
 | |
| 	}
 | |
| 
 | |
| 	request := &tsdb.TsdbQuery{
 | |
| 		TimeRange: timeRange,
 | |
| 		Debug:     reqDto.Debug,
 | |
| 		User:      c.SignedInUser,
 | |
| 	}
 | |
| 
 | |
| 	for _, query := range reqDto.Queries {
 | |
| 		request.Queries = append(request.Queries, &tsdb.Query{
 | |
| 			RefId:         query.Get("refId").MustString("A"),
 | |
| 			MaxDataPoints: query.Get("maxDataPoints").MustInt64(100),
 | |
| 			IntervalMs:    query.Get("intervalMs").MustInt64(1000),
 | |
| 			Model:         query,
 | |
| 			DataSource:    ds,
 | |
| 		})
 | |
| 	}
 | |
| 
 | |
| 	resp, err := tsdb.HandleRequest(c.Req.Context(), ds, request)
 | |
| 	if err != nil {
 | |
| 		return response.Error(500, "Metric request error", err)
 | |
| 	}
 | |
| 
 | |
| 	statusCode := 200
 | |
| 	for _, res := range resp.Results {
 | |
| 		if res.Error != nil {
 | |
| 			res.ErrorString = res.Error.Error()
 | |
| 			resp.Message = res.ErrorString
 | |
| 			statusCode = 400
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return response.JSON(statusCode, &resp)
 | |
| }
 | |
| 
 | |
| // GET /api/tsdb/testdata/scenarios
 | |
| func GetTestDataScenarios(c *models.ReqContext) response.Response {
 | |
| 	result := make([]interface{}, 0)
 | |
| 
 | |
| 	scenarioIds := make([]string, 0)
 | |
| 	for id := range testdatasource.ScenarioRegistry {
 | |
| 		scenarioIds = append(scenarioIds, id)
 | |
| 	}
 | |
| 	sort.Strings(scenarioIds)
 | |
| 
 | |
| 	for _, scenarioId := range scenarioIds {
 | |
| 		scenario := testdatasource.ScenarioRegistry[scenarioId]
 | |
| 		result = append(result, map[string]interface{}{
 | |
| 			"id":          scenario.Id,
 | |
| 			"name":        scenario.Name,
 | |
| 			"description": scenario.Description,
 | |
| 			"stringInput": scenario.StringInput,
 | |
| 		})
 | |
| 	}
 | |
| 
 | |
| 	return response.JSON(200, &result)
 | |
| }
 | |
| 
 | |
| // GenerateError generates a index out of range error
 | |
| func GenerateError(c *models.ReqContext) response.Response {
 | |
| 	var array []string
 | |
| 	// nolint: govet
 | |
| 	return response.JSON(200, array[20])
 | |
| }
 | |
| 
 | |
| // GET /api/tsdb/testdata/gensql
 | |
| func GenerateSQLTestData(c *models.ReqContext) response.Response {
 | |
| 	if err := bus.Dispatch(&models.InsertSQLTestDataCommand{}); err != nil {
 | |
| 		return response.Error(500, "Failed to insert test data", err)
 | |
| 	}
 | |
| 
 | |
| 	return response.JSON(200, &util.DynMap{"message": "OK"})
 | |
| }
 | |
| 
 | |
| // GET /api/tsdb/testdata/random-walk
 | |
| func GetTestDataRandomWalk(c *models.ReqContext) response.Response {
 | |
| 	from := c.Query("from")
 | |
| 	to := c.Query("to")
 | |
| 	intervalMs := c.QueryInt64("intervalMs")
 | |
| 
 | |
| 	timeRange := tsdb.NewTimeRange(from, to)
 | |
| 	request := &tsdb.TsdbQuery{TimeRange: timeRange}
 | |
| 
 | |
| 	dsInfo := &models.DataSource{Type: "testdata"}
 | |
| 	request.Queries = append(request.Queries, &tsdb.Query{
 | |
| 		RefId:      "A",
 | |
| 		IntervalMs: intervalMs,
 | |
| 		Model: simplejson.NewFromAny(&util.DynMap{
 | |
| 			"scenario": "random_walk",
 | |
| 		}),
 | |
| 		DataSource: dsInfo,
 | |
| 	})
 | |
| 
 | |
| 	resp, err := tsdb.HandleRequest(context.Background(), dsInfo, request)
 | |
| 	if err != nil {
 | |
| 		return response.Error(500, "Metric request error", err)
 | |
| 	}
 | |
| 
 | |
| 	return response.JSON(200, &resp)
 | |
| }
 |