2015-01-06 02:11:00 -06:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2016-10-03 02:38:03 -05:00
|
|
|
"context"
|
2016-06-03 09:15:36 -05:00
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
2016-06-03 08:06:57 -05:00
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
|
|
"github.com/grafana/grafana/pkg/metrics"
|
|
|
|
"github.com/grafana/grafana/pkg/middleware"
|
2016-09-27 07:39:51 -05:00
|
|
|
"github.com/grafana/grafana/pkg/tsdb"
|
2016-09-27 11:17:39 -05:00
|
|
|
"github.com/grafana/grafana/pkg/tsdb/testdata"
|
2016-06-03 14:22:34 -05:00
|
|
|
"github.com/grafana/grafana/pkg/util"
|
2015-01-06 02:11:00 -06:00
|
|
|
)
|
|
|
|
|
2016-09-27 11:17:39 -05:00
|
|
|
// POST /api/tsdb/query
|
|
|
|
func QueryMetrics(c *middleware.Context, reqDto dtos.MetricRequest) Response {
|
|
|
|
timeRange := tsdb.NewTimeRange(reqDto.From, reqDto.To)
|
|
|
|
|
|
|
|
request := &tsdb.Request{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,
|
|
|
|
DataSource: &tsdb.DataSourceInfo{
|
|
|
|
Name: "Grafana TestDataDB",
|
|
|
|
PluginId: "grafana-testdata-datasource",
|
2016-09-27 07:39:51 -05:00
|
|
|
},
|
2016-09-27 11:17:39 -05:00
|
|
|
})
|
2016-09-27 07:39:51 -05:00
|
|
|
}
|
|
|
|
|
2016-10-03 02:38:03 -05:00
|
|
|
resp, err := tsdb.HandleRequest(context.TODO(), request)
|
2016-09-27 07:39:51 -05:00
|
|
|
if err != nil {
|
|
|
|
return ApiError(500, "Metric request error", err)
|
|
|
|
}
|
2015-01-06 02:11:00 -06:00
|
|
|
|
2016-09-27 11:17:39 -05:00
|
|
|
return Json(200, &resp)
|
|
|
|
}
|
2016-09-27 07:39:51 -05:00
|
|
|
|
2016-09-27 11:17:39 -05:00
|
|
|
// GET /api/tsdb/testdata/scenarios
|
|
|
|
func GetTestDataScenarios(c *middleware.Context) Response {
|
|
|
|
result := make([]interface{}, 0)
|
2015-01-06 02:11:00 -06:00
|
|
|
|
2016-09-27 11:17:39 -05:00
|
|
|
for _, scenario := range testdata.ScenarioRegistry {
|
|
|
|
result = append(result, map[string]interface{}{
|
|
|
|
"id": scenario.Id,
|
|
|
|
"name": scenario.Name,
|
|
|
|
"description": scenario.Description,
|
2016-09-28 03:37:30 -05:00
|
|
|
"stringInput": scenario.StringInput,
|
2016-09-27 11:17:39 -05:00
|
|
|
})
|
2015-01-06 02:11:00 -06:00
|
|
|
}
|
|
|
|
|
2016-06-07 22:45:13 -05:00
|
|
|
return Json(200, &result)
|
2015-01-06 02:11:00 -06:00
|
|
|
}
|
2016-06-03 08:06:57 -05:00
|
|
|
|
2016-06-03 09:15:36 -05:00
|
|
|
func GetInternalMetrics(c *middleware.Context) Response {
|
2016-06-03 14:22:34 -05:00
|
|
|
if metrics.UseNilMetrics {
|
|
|
|
return Json(200, util.DynMap{"message": "Metrics disabled"})
|
|
|
|
}
|
|
|
|
|
2016-06-03 08:06:57 -05:00
|
|
|
snapshots := metrics.MetricStats.GetSnapshots()
|
|
|
|
|
|
|
|
resp := make(map[string]interface{})
|
|
|
|
|
|
|
|
for _, m := range snapshots {
|
|
|
|
metricName := m.Name() + m.StringifyTags()
|
|
|
|
|
|
|
|
switch metric := m.(type) {
|
2016-11-29 09:45:26 -06:00
|
|
|
case metrics.Gauge:
|
|
|
|
resp[metricName] = map[string]interface{}{
|
|
|
|
"value": metric.Value(),
|
|
|
|
}
|
2016-06-03 08:06:57 -05:00
|
|
|
case metrics.Counter:
|
|
|
|
resp[metricName] = map[string]interface{}{
|
|
|
|
"count": metric.Count(),
|
|
|
|
}
|
|
|
|
case metrics.Timer:
|
|
|
|
percentiles := metric.Percentiles([]float64{0.25, 0.75, 0.90, 0.99})
|
|
|
|
resp[metricName] = map[string]interface{}{
|
|
|
|
"count": metric.Count(),
|
|
|
|
"min": metric.Min(),
|
|
|
|
"max": metric.Max(),
|
|
|
|
"mean": metric.Mean(),
|
|
|
|
"std": metric.StdDev(),
|
|
|
|
"p25": percentiles[0],
|
|
|
|
"p75": percentiles[1],
|
|
|
|
"p90": percentiles[2],
|
|
|
|
"p99": percentiles[3],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-03 09:15:36 -05:00
|
|
|
var b []byte
|
|
|
|
var err error
|
|
|
|
if b, err = json.MarshalIndent(resp, "", " "); err != nil {
|
|
|
|
return ApiError(500, "body json marshal", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &NormalResponse{
|
|
|
|
body: b,
|
|
|
|
status: 200,
|
|
|
|
header: http.Header{
|
|
|
|
"Content-Type": []string{"application/json"},
|
|
|
|
},
|
|
|
|
}
|
2016-06-03 08:06:57 -05:00
|
|
|
}
|
2016-06-07 03:05:10 -05:00
|
|
|
|
|
|
|
// Genereates a index out of range error
|
|
|
|
func GenerateError(c *middleware.Context) Response {
|
|
|
|
var array []string
|
|
|
|
return Json(200, array[20])
|
|
|
|
}
|