2015-08-12 20:15:34 +00:00
|
|
|
package datadog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2015-10-26 18:31:21 +00:00
|
|
|
"log"
|
2015-08-12 20:15:34 +00:00
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"sort"
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2016-01-20 18:57:35 +00:00
|
|
|
"github.com/influxdata/telegraf/internal"
|
|
|
|
"github.com/influxdata/telegraf/plugins/outputs"
|
2015-08-12 20:15:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Datadog struct {
|
|
|
|
Apikey string
|
2015-11-10 21:40:39 +00:00
|
|
|
Timeout internal.Duration
|
2015-08-12 20:15:34 +00:00
|
|
|
|
|
|
|
apiUrl string
|
|
|
|
client *http.Client
|
|
|
|
}
|
|
|
|
|
2015-08-25 23:59:12 +00:00
|
|
|
var sampleConfig = `
|
2016-02-18 21:26:51 +00:00
|
|
|
## Datadog API key
|
2015-10-15 21:53:29 +00:00
|
|
|
apikey = "my-secret-key" # required.
|
2015-08-25 23:59:12 +00:00
|
|
|
|
2016-02-18 21:26:51 +00:00
|
|
|
## Connection timeout.
|
2015-10-15 21:53:29 +00:00
|
|
|
# timeout = "5s"
|
2015-08-25 23:59:12 +00:00
|
|
|
`
|
|
|
|
|
2015-08-12 20:15:34 +00:00
|
|
|
type TimeSeries struct {
|
|
|
|
Series []*Metric `json:"series"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Metric struct {
|
|
|
|
Metric string `json:"metric"`
|
2016-01-28 23:12:33 +00:00
|
|
|
Points [1]Point `json:"points"`
|
2015-10-23 13:07:48 +00:00
|
|
|
Host string `json:"host"`
|
2016-01-28 23:12:33 +00:00
|
|
|
Tags []string `json:"tags,omitempty"`
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Point [2]float64
|
|
|
|
|
|
|
|
const datadog_api = "https://app.datadoghq.com/api/v1/series"
|
|
|
|
|
|
|
|
func NewDatadog(apiUrl string) *Datadog {
|
|
|
|
return &Datadog{
|
|
|
|
apiUrl: apiUrl,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Datadog) Connect() error {
|
|
|
|
if d.Apikey == "" {
|
|
|
|
return fmt.Errorf("apikey is a required field for datadog output")
|
|
|
|
}
|
|
|
|
d.client = &http.Client{
|
|
|
|
Timeout: d.Timeout.Duration,
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
func (d *Datadog) Write(metrics []telegraf.Metric) error {
|
|
|
|
if len(metrics) == 0 {
|
2015-08-12 20:15:34 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
ts := TimeSeries{}
|
2015-12-19 21:19:43 +00:00
|
|
|
tempSeries := []*Metric{}
|
|
|
|
metricCounter := 0
|
2015-12-19 21:08:31 +00:00
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
for _, m := range metrics {
|
|
|
|
if dogMs, err := buildMetrics(m); err == nil {
|
|
|
|
for fieldName, dogM := range dogMs {
|
2016-01-28 18:28:33 +00:00
|
|
|
// name of the datadog measurement
|
|
|
|
var dname string
|
|
|
|
if fieldName == "value" {
|
|
|
|
// adding .value seems redundant here
|
2016-04-20 04:50:22 +00:00
|
|
|
dname = m.Name()
|
2016-01-28 18:28:33 +00:00
|
|
|
} else {
|
2016-04-20 04:50:22 +00:00
|
|
|
dname = m.Name() + "." + fieldName
|
2016-01-28 18:28:33 +00:00
|
|
|
}
|
2016-04-20 04:50:22 +00:00
|
|
|
var host string
|
|
|
|
host, _ = m.Tags()["host"]
|
2015-12-19 21:08:31 +00:00
|
|
|
metric := &Metric{
|
2016-01-28 18:28:33 +00:00
|
|
|
Metric: dname,
|
2016-01-27 23:15:14 +00:00
|
|
|
Tags: buildTags(m.Tags()),
|
2016-04-20 04:50:22 +00:00
|
|
|
Host: host,
|
2015-12-19 21:08:31 +00:00
|
|
|
}
|
2016-01-27 23:15:14 +00:00
|
|
|
metric.Points[0] = dogM
|
2015-12-19 21:19:43 +00:00
|
|
|
tempSeries = append(tempSeries, metric)
|
|
|
|
metricCounter++
|
2015-12-19 21:08:31 +00:00
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
} else {
|
2016-09-30 21:37:56 +00:00
|
|
|
log.Printf("I! unable to build Metric for %s, skipping\n", m.Name())
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-19 21:08:31 +00:00
|
|
|
|
2015-12-19 21:19:43 +00:00
|
|
|
ts.Series = make([]*Metric, metricCounter)
|
2015-10-26 18:31:21 +00:00
|
|
|
copy(ts.Series, tempSeries[0:])
|
2015-08-12 20:15:34 +00:00
|
|
|
tsBytes, err := json.Marshal(ts)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to marshal TimeSeries, %s\n", err.Error())
|
|
|
|
}
|
|
|
|
req, err := http.NewRequest("POST", d.authenticatedUrl(), bytes.NewBuffer(tsBytes))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to create http.Request, %s\n", err.Error())
|
|
|
|
}
|
|
|
|
req.Header.Add("Content-Type", "application/json")
|
|
|
|
|
|
|
|
resp, err := d.client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error POSTing metrics, %s\n", err.Error())
|
|
|
|
}
|
2015-10-23 13:07:48 +00:00
|
|
|
defer resp.Body.Close()
|
2015-08-12 20:15:34 +00:00
|
|
|
|
|
|
|
if resp.StatusCode < 200 || resp.StatusCode > 209 {
|
|
|
|
return fmt.Errorf("received bad status code, %d\n", resp.StatusCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-08-25 23:59:12 +00:00
|
|
|
func (d *Datadog) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Datadog) Description() string {
|
|
|
|
return "Configuration for DataDog API to send metrics to."
|
|
|
|
}
|
|
|
|
|
2015-08-12 20:15:34 +00:00
|
|
|
func (d *Datadog) authenticatedUrl() string {
|
|
|
|
q := url.Values{
|
|
|
|
"api_key": []string{d.Apikey},
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s?%s", d.apiUrl, q.Encode())
|
|
|
|
}
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
func buildMetrics(m telegraf.Metric) (map[string]Point, error) {
|
|
|
|
ms := make(map[string]Point)
|
|
|
|
for k, v := range m.Fields() {
|
2016-03-22 15:07:01 +00:00
|
|
|
if !verifyValue(v) {
|
|
|
|
continue
|
|
|
|
}
|
2015-12-19 21:08:31 +00:00
|
|
|
var p Point
|
|
|
|
if err := p.setValue(v); err != nil {
|
2016-01-27 23:15:14 +00:00
|
|
|
return ms, fmt.Errorf("unable to extract value from Fields, %s", err.Error())
|
2015-12-19 21:08:31 +00:00
|
|
|
}
|
2016-01-27 23:15:14 +00:00
|
|
|
p[0] = float64(m.Time().Unix())
|
|
|
|
ms[k] = p
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
2016-01-27 23:15:14 +00:00
|
|
|
return ms, nil
|
2015-10-16 22:13:32 +00:00
|
|
|
}
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
func buildTags(mTags map[string]string) []string {
|
|
|
|
tags := make([]string, len(mTags))
|
2015-10-16 22:13:32 +00:00
|
|
|
index := 0
|
2016-01-27 23:15:14 +00:00
|
|
|
for k, v := range mTags {
|
2015-08-12 20:15:34 +00:00
|
|
|
tags[index] = fmt.Sprintf("%s:%s", k, v)
|
|
|
|
index += 1
|
|
|
|
}
|
|
|
|
sort.Strings(tags)
|
|
|
|
return tags
|
|
|
|
}
|
|
|
|
|
2016-03-22 15:07:01 +00:00
|
|
|
func verifyValue(v interface{}) bool {
|
|
|
|
switch v.(type) {
|
|
|
|
case string:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-08-12 20:15:34 +00:00
|
|
|
func (p *Point) setValue(v interface{}) error {
|
|
|
|
switch d := v.(type) {
|
|
|
|
case int:
|
|
|
|
p[1] = float64(int(d))
|
|
|
|
case int32:
|
|
|
|
p[1] = float64(int32(d))
|
|
|
|
case int64:
|
|
|
|
p[1] = float64(int64(d))
|
|
|
|
case float32:
|
|
|
|
p[1] = float64(d)
|
|
|
|
case float64:
|
|
|
|
p[1] = float64(d)
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("undeterminable type")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Datadog) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
outputs.Add("datadog", func() telegraf.Output {
|
2015-08-12 20:15:34 +00:00
|
|
|
return NewDatadog(datadog_api)
|
|
|
|
})
|
|
|
|
}
|