mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
caf47b2fbc
Change-Id: I0f4393f638c6e2bb2b2ce14e58e38b49ce456da8
123 lines
2.7 KiB
Go
123 lines
2.7 KiB
Go
package opentsdb
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"math"
|
|
"net/http"
|
|
"net/url"
|
|
"regexp"
|
|
"time"
|
|
|
|
"github.com/golang/glog"
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
|
|
|
"github.com/prometheus/prometheus/utility"
|
|
)
|
|
|
|
const (
|
|
putEndpoint = "/api/put"
|
|
contentTypeJSON = "application/json"
|
|
)
|
|
|
|
var (
|
|
illegalCharsRE = regexp.MustCompile(`[^a-zA-Z0-9_\-./]`)
|
|
)
|
|
|
|
// Client allows sending batches of Prometheus samples to OpenTSDB.
|
|
type Client struct {
|
|
url string
|
|
httpClient *http.Client
|
|
}
|
|
|
|
// NewClient creates a new Client.
|
|
func NewClient(url string, timeout time.Duration) *Client {
|
|
return &Client{
|
|
url: url,
|
|
httpClient: utility.NewDeadlineClient(timeout),
|
|
}
|
|
}
|
|
|
|
// StoreSamplesRequest is used for building a JSON request for storing samples
|
|
// via the OpenTSDB.
|
|
type StoreSamplesRequest struct {
|
|
Metric TagValue `json:"metric"`
|
|
Timestamp int64 `json:"timestamp"`
|
|
Value float64 `json:"value"`
|
|
Tags map[string]TagValue `json:"tags"`
|
|
}
|
|
|
|
// tagsFromMetric translates Prometheus metric into OpenTSDB tags.
|
|
func tagsFromMetric(m clientmodel.Metric) map[string]TagValue {
|
|
tags := make(map[string]TagValue, len(m)-1)
|
|
for l, v := range m {
|
|
if l == clientmodel.MetricNameLabel {
|
|
continue
|
|
}
|
|
tags[string(l)] = TagValue(v)
|
|
}
|
|
return tags
|
|
}
|
|
|
|
// Store sends a batch of samples to OpenTSDB via its HTTP API.
|
|
func (c *Client) Store(samples clientmodel.Samples) error {
|
|
reqs := make([]StoreSamplesRequest, 0, len(samples))
|
|
for _, s := range samples {
|
|
v := float64(s.Value)
|
|
if math.IsNaN(v) || math.IsInf(v, 0) {
|
|
glog.Warningf("cannot send value %d to OpenTSDB, skipping sample %#v", v, s)
|
|
continue
|
|
}
|
|
metric := TagValue(s.Metric[clientmodel.MetricNameLabel])
|
|
reqs = append(reqs, StoreSamplesRequest{
|
|
Metric: metric,
|
|
Timestamp: s.Timestamp.Unix(),
|
|
Value: v,
|
|
Tags: tagsFromMetric(s.Metric),
|
|
})
|
|
}
|
|
|
|
u, err := url.Parse(c.url)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
u.Path = putEndpoint
|
|
|
|
buf, err := json.Marshal(reqs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := c.httpClient.Post(
|
|
u.String(),
|
|
contentTypeJSON,
|
|
bytes.NewBuffer(buf),
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
// API returns status code 204 for successful writes.
|
|
// http://opentsdb.net/docs/build/html/api_http/put.html
|
|
if resp.StatusCode == http.StatusNoContent {
|
|
return nil
|
|
}
|
|
|
|
// API returns status code 400 on error, encoding error details in the
|
|
// response content in JSON.
|
|
buf, err = ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var r map[string]int
|
|
if err := json.Unmarshal(buf, &r); err != nil {
|
|
return err
|
|
}
|
|
return fmt.Errorf("failed to write %d samples to OpenTSDB, %d succeeded", r["failed"], r["success"])
|
|
}
|