grafana/pkg/tsdb/graphite/graphite.go

239 lines
6.2 KiB
Go
Raw Normal View History

package graphite
import (
"context"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"path"
"regexp"
"strconv"
"strings"
"golang.org/x/net/context/ctxhttp"
"github.com/grafana/grafana/pkg/infra/log"
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/plugins"
"github.com/grafana/grafana/pkg/setting"
"github.com/opentracing/opentracing-go"
)
type GraphiteExecutor struct {
HttpClient *http.Client
}
//nolint: staticcheck // plugins.DataPlugin deprecated
func NewExecutor(*models.DataSource) (plugins.DataPlugin, error) {
2017-09-21 08:03:47 -05:00
return &GraphiteExecutor{}, nil
}
var glog = log.New("tsdb.graphite")
//nolint: staticcheck // plugins.DataQuery deprecated
func (e *GraphiteExecutor) DataQuery(ctx context.Context, dsInfo *models.DataSource, tsdbQuery plugins.DataQuery) (
plugins.DataResponse, error) {
// This logic is used when called from Dashboard Alerting.
2017-09-21 08:23:34 -05:00
from := "-" + formatTimeRange(tsdbQuery.TimeRange.From)
until := formatTimeRange(tsdbQuery.TimeRange.To)
// This logic is used when called through server side expressions.
if isTimeRangeNumeric(*tsdbQuery.TimeRange) {
var err error
from, until, err = epochMStoGraphiteTime(*tsdbQuery.TimeRange)
if err != nil {
return plugins.DataResponse{}, err
}
}
var target string
2016-09-01 06:03:15 -05:00
formData := url.Values{
"from": []string{from},
"until": []string{until},
"format": []string{"json"},
"maxDataPoints": []string{"500"},
}
emptyQueries := make([]string, 0)
2017-09-21 08:23:34 -05:00
for _, query := range tsdbQuery.Queries {
2019-03-13 03:01:45 -05:00
glog.Debug("graphite", "query", query.Model)
currTarget := ""
if fullTarget, err := query.Model.Get("targetFull").String(); err == nil {
currTarget = fullTarget
} else {
currTarget = query.Model.Get("target").MustString()
}
if currTarget == "" {
glog.Debug("graphite", "empty query target", query.Model)
emptyQueries = append(emptyQueries, fmt.Sprintf("Query: %v has no target", query.Model))
continue
}
target = fixIntervalFormat(currTarget)
}
if target == "" {
glog.Error("No targets in query model", "models without targets", strings.Join(emptyQueries, "\n"))
return plugins.DataResponse{}, errors.New("no query target found for the alert rule")
}
formData["target"] = []string{target}
if setting.Env == setting.Dev {
glog.Debug("Graphite request", "params", formData)
}
2017-09-21 08:03:47 -05:00
req, err := e.createRequest(dsInfo, formData)
if err != nil {
return plugins.DataResponse{}, err
2017-09-21 08:03:47 -05:00
}
httpClient, err := dsInfo.GetHttpClient()
2016-09-01 03:09:13 -05:00
if err != nil {
return plugins.DataResponse{}, err
2016-09-01 03:09:13 -05:00
}
2017-09-11 13:57:08 -05:00
span, ctx := opentracing.StartSpanFromContext(ctx, "graphite query")
2017-09-11 11:48:20 -05:00
span.SetTag("target", target)
span.SetTag("from", from)
span.SetTag("until", until)
span.SetTag("datasource_id", dsInfo.Id)
span.SetTag("org_id", dsInfo.OrgId)
defer span.Finish()
if err := opentracing.GlobalTracer().Inject(
span.Context(),
opentracing.HTTPHeaders,
opentracing.HTTPHeadersCarrier(req.Header)); err != nil {
return plugins.DataResponse{}, err
}
2017-09-21 08:03:47 -05:00
res, err := ctxhttp.Do(ctx, httpClient, req)
2016-09-01 06:03:15 -05:00
if err != nil {
return plugins.DataResponse{}, err
}
2016-09-01 06:03:15 -05:00
data, err := e.parseResponse(res)
if err != nil {
return plugins.DataResponse{}, err
}
result := plugins.DataResponse{
Results: make(map[string]plugins.DataQueryResult),
}
queryRes := plugins.DataQueryResult{}
2016-09-01 06:03:15 -05:00
for _, series := range data {
queryRes.Series = append(queryRes.Series, plugins.DataTimeSeries{
2016-09-01 06:03:15 -05:00
Name: series.Target,
Points: series.DataPoints,
})
if setting.Env == setting.Dev {
glog.Debug("Graphite response", "target", series.Target, "datapoints", len(series.DataPoints))
}
2016-09-01 06:03:15 -05:00
}
result.Results["A"] = queryRes
return result, nil
2016-09-01 06:03:15 -05:00
}
func (e *GraphiteExecutor) parseResponse(res *http.Response) ([]TargetResponseDTO, error) {
body, err := ioutil.ReadAll(res.Body)
if err != nil {
2016-09-01 06:03:15 -05:00
return nil, err
}
defer func() {
if err := res.Body.Close(); err != nil {
glog.Warn("Failed to close response body", "err", err)
}
}()
2016-09-27 04:13:13 -05:00
if res.StatusCode/100 != 2 {
glog.Info("Request failed", "status", res.Status, "body", string(body))
return nil, fmt.Errorf("request failed, status: %s", res.Status)
}
var data []TargetResponseDTO
err = json.Unmarshal(body, &data)
if err != nil {
glog.Info("Failed to unmarshal graphite response", "error", err, "status", res.Status, "body", string(body))
2016-09-01 06:03:15 -05:00
return nil, err
}
for si := range data {
// Convert Response to timestamps MS
for pi, point := range data[si].DataPoints {
data[si].DataPoints[pi][1].Float64 = point[1].Float64 * 1000
}
}
2016-09-01 06:03:15 -05:00
return data, nil
}
2017-09-21 08:03:47 -05:00
func (e *GraphiteExecutor) createRequest(dsInfo *models.DataSource, data url.Values) (*http.Request, error) {
u, err := url.Parse(dsInfo.Url)
if err != nil {
return nil, err
}
2016-09-01 06:03:15 -05:00
u.Path = path.Join(u.Path, "render")
req, err := http.NewRequest(http.MethodPost, u.String(), strings.NewReader(data.Encode()))
if err != nil {
glog.Info("Failed to create request", "error", err)
return nil, fmt.Errorf("failed to create request: %w", err)
}
2016-09-01 06:03:15 -05:00
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
2017-09-21 08:03:47 -05:00
if dsInfo.BasicAuth {
req.SetBasicAuth(dsInfo.BasicAuthUser, dsInfo.DecryptedBasicAuthPassword())
2016-09-01 06:03:15 -05:00
}
return req, err
}
func formatTimeRange(input string) string {
if input == "now" {
return input
}
return strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll(input, "now", ""), "m", "min"), "M", "mon")
}
func fixIntervalFormat(target string) string {
rMinute := regexp.MustCompile(`'(\d+)m'`)
target = rMinute.ReplaceAllStringFunc(target, func(m string) string {
return strings.ReplaceAll(m, "m", "min")
})
rMonth := regexp.MustCompile(`'(\d+)M'`)
target = rMonth.ReplaceAllStringFunc(target, func(M string) string {
return strings.ReplaceAll(M, "M", "mon")
})
return target
}
func isTimeRangeNumeric(tr plugins.DataTimeRange) bool {
if _, err := strconv.ParseInt(tr.From, 10, 64); err != nil {
return false
}
if _, err := strconv.ParseInt(tr.To, 10, 64); err != nil {
return false
}
return true
}
func epochMStoGraphiteTime(tr plugins.DataTimeRange) (string, string, error) {
from, err := strconv.ParseInt(tr.From, 10, 64)
if err != nil {
return "", "", err
}
to, err := strconv.ParseInt(tr.To, 10, 64)
if err != nil {
return "", "", err
}
return fmt.Sprintf("%d", from/1000), fmt.Sprintf("%d", to/1000), nil
}