mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
84 lines
1.8 KiB
Go
84 lines
1.8 KiB
Go
package graphite
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/log"
|
|
"github.com/grafana/grafana/pkg/tsdb"
|
|
)
|
|
|
|
type GraphiteExecutor struct {
|
|
*tsdb.DataSourceInfo
|
|
}
|
|
|
|
func NewGraphiteExecutor(dsInfo *tsdb.DataSourceInfo) tsdb.Executor {
|
|
return &GraphiteExecutor{dsInfo}
|
|
}
|
|
|
|
var glog log.Logger
|
|
|
|
func init() {
|
|
glog = log.New("tsdb.graphite")
|
|
tsdb.RegisterExecutor("graphite", NewGraphiteExecutor)
|
|
}
|
|
|
|
func (e *GraphiteExecutor) Execute(queries tsdb.QuerySlice, context *tsdb.QueryContext) *tsdb.BatchResult {
|
|
result := &tsdb.BatchResult{}
|
|
|
|
params := url.Values{
|
|
"from": []string{formatTimeRange(context.TimeRange.From)},
|
|
"until": []string{context.TimeRange.To},
|
|
"format": []string{"json"},
|
|
"maxDataPoints": []string{"500"},
|
|
}
|
|
|
|
for _, query := range queries {
|
|
params["target"] = []string{
|
|
query.Query,
|
|
}
|
|
}
|
|
|
|
client := http.Client{Timeout: time.Duration(10 * time.Second)}
|
|
res, err := client.PostForm(e.Url+"/render?", params)
|
|
if err != nil {
|
|
result.Error = err
|
|
return result
|
|
}
|
|
defer res.Body.Close()
|
|
|
|
body, err := ioutil.ReadAll(res.Body)
|
|
if err != nil {
|
|
result.Error = err
|
|
return result
|
|
}
|
|
|
|
var data []TargetResponseDTO
|
|
err = json.Unmarshal(body, &data)
|
|
if err != nil {
|
|
glog.Info("Failed to unmarshal graphite response", "error", err, "body", string(body))
|
|
result.Error = err
|
|
return result
|
|
}
|
|
|
|
result.QueryResults = make(map[string]*tsdb.QueryResult)
|
|
queryRes := &tsdb.QueryResult{}
|
|
for _, series := range data {
|
|
queryRes.Series = append(queryRes.Series, &tsdb.TimeSeries{
|
|
Name: series.Target,
|
|
Points: series.DataPoints,
|
|
})
|
|
}
|
|
|
|
result.QueryResults["A"] = queryRes
|
|
return result
|
|
}
|
|
|
|
func formatTimeRange(input string) string {
|
|
return strings.Replace(strings.Replace(input, "m", "min", -1), "M", "mon", -1)
|
|
}
|