grafana/pkg/api/metrics.go

119 lines
3.1 KiB
Go
Raw Normal View History

package api
import (
"context"
2016-06-03 08:06:57 -05:00
"github.com/grafana/grafana/pkg/api/dtos"
2017-03-29 15:54:07 -05:00
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/components/simplejson"
m "github.com/grafana/grafana/pkg/models"
2016-09-27 07:39:51 -05:00
"github.com/grafana/grafana/pkg/tsdb"
"github.com/grafana/grafana/pkg/tsdb/testdata"
"github.com/grafana/grafana/pkg/util"
)
// POST /api/tsdb/query
2018-03-07 10:54:50 -06:00
func QueryMetrics(c *m.ReqContext, reqDto dtos.MetricRequest) Response {
timeRange := tsdb.NewTimeRange(reqDto.From, reqDto.To)
2017-03-29 15:54:07 -05:00
if len(reqDto.Queries) == 0 {
2018-03-22 16:13:46 -05:00
return Error(400, "No queries found in query", nil)
2017-03-29 15:54:07 -05:00
}
2018-03-22 06:37:35 -05:00
dsID, err := reqDto.Queries[0].Get("datasourceId").Int64()
2017-03-29 15:54:07 -05:00
if err != nil {
2018-03-22 16:13:46 -05:00
return Error(400, "Query missing datasourceId", nil)
2017-03-29 15:54:07 -05:00
}
2018-03-22 06:37:35 -05:00
dsQuery := m.GetDataSourceByIdQuery{Id: dsID, OrgId: c.OrgId}
2017-03-29 15:54:07 -05:00
if err := bus.Dispatch(&dsQuery); err != nil {
2018-03-22 16:13:46 -05:00
return Error(500, "failed to fetch data source", err)
2017-03-29 15:54:07 -05:00
}
2017-09-20 11:56:33 -05:00
request := &tsdb.TsdbQuery{TimeRange: timeRange}
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,
2017-03-29 15:54:07 -05:00
DataSource: dsQuery.Result,
})
2016-09-27 07:39:51 -05:00
}
resp, err := tsdb.HandleRequest(context.Background(), dsQuery.Result, request)
2016-09-27 07:39:51 -05:00
if err != nil {
2018-03-22 16:13:46 -05:00
return Error(500, "Metric request error", err)
2016-09-27 07:39:51 -05:00
}
2017-04-20 10:10:09 -05:00
statusCode := 200
for _, res := range resp.Results {
if res.Error != nil {
res.ErrorString = res.Error.Error()
2017-04-20 10:10:09 -05:00
resp.Message = res.ErrorString
statusCode = 500
}
}
2018-03-22 16:13:46 -05:00
return JSON(statusCode, &resp)
}
2016-09-27 07:39:51 -05:00
// GET /api/tsdb/testdata/scenarios
2018-03-07 10:54:50 -06:00
func GetTestDataScenarios(c *m.ReqContext) Response {
result := make([]interface{}, 0)
for _, scenario := range testdata.ScenarioRegistry {
result = append(result, map[string]interface{}{
"id": scenario.Id,
"name": scenario.Name,
"description": scenario.Description,
"stringInput": scenario.StringInput,
})
}
2018-03-22 16:13:46 -05:00
return JSON(200, &result)
}
2016-06-03 08:06:57 -05:00
// Genereates a index out of range error
2018-03-07 10:54:50 -06:00
func GenerateError(c *m.ReqContext) Response {
var array []string
2018-03-22 16:13:46 -05:00
return JSON(200, array[20])
}
2017-03-30 13:23:40 -05:00
// GET /api/tsdb/testdata/gensql
2018-03-22 06:37:35 -05:00
func GenerateSQLTestData(c *m.ReqContext) Response {
if err := bus.Dispatch(&m.InsertSqlTestDataCommand{}); err != nil {
2018-03-22 16:13:46 -05:00
return Error(500, "Failed to insert test data", err)
2017-03-30 13:23:40 -05:00
}
2018-03-22 16:13:46 -05:00
return JSON(200, &util.DynMap{"message": "OK"})
2017-03-30 13:23:40 -05:00
}
// GET /api/tsdb/testdata/random-walk
2018-03-07 10:54:50 -06:00
func GetTestDataRandomWalk(c *m.ReqContext) Response {
from := c.Query("from")
to := c.Query("to")
intervalMs := c.QueryInt64("intervalMs")
timeRange := tsdb.NewTimeRange(from, to)
2017-09-20 11:56:33 -05:00
request := &tsdb.TsdbQuery{TimeRange: timeRange}
dsInfo := &m.DataSource{Type: "grafana-testdata-datasource"}
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 {
2018-03-22 16:13:46 -05:00
return Error(500, "Metric request error", err)
}
2018-03-22 16:13:46 -05:00
return JSON(200, &resp)
}