2015-10-26 18:31:21 +00:00
|
|
|
package librato
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2016-02-26 20:06:56 +00:00
|
|
|
"io/ioutil"
|
2015-10-26 18:31:21 +00:00
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
|
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"
|
2016-02-26 20:06:56 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/serializers/graphite"
|
2015-10-26 18:31:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Librato struct {
|
2016-02-26 20:06:56 +00:00
|
|
|
ApiUser string
|
|
|
|
ApiToken string
|
|
|
|
Debug bool
|
|
|
|
NameFromTags bool
|
|
|
|
SourceTag string
|
|
|
|
Timeout internal.Duration
|
2016-04-08 22:04:45 +00:00
|
|
|
Template string
|
2015-10-26 18:31:21 +00:00
|
|
|
|
|
|
|
apiUrl string
|
|
|
|
client *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
var sampleConfig = `
|
2016-02-18 21:26:51 +00:00
|
|
|
## Librator API Docs
|
|
|
|
## http://dev.librato.com/v1/metrics-authentication
|
|
|
|
## Librato API user
|
2015-10-26 18:31:21 +00:00
|
|
|
api_user = "telegraf@influxdb.com" # required.
|
2016-02-18 21:26:51 +00:00
|
|
|
## Librato API token
|
2015-10-26 18:31:21 +00:00
|
|
|
api_token = "my-secret-token" # required.
|
2016-04-08 22:04:45 +00:00
|
|
|
## Debug
|
2016-02-26 20:06:56 +00:00
|
|
|
# debug = false
|
2016-04-08 22:04:45 +00:00
|
|
|
## Tag Field to populate source attribute (optional)
|
|
|
|
## This is typically the _hostname_ from which the metric was obtained.
|
2016-02-26 20:06:56 +00:00
|
|
|
source_tag = "host"
|
2016-02-18 21:26:51 +00:00
|
|
|
## Connection timeout.
|
2015-10-26 18:31:21 +00:00
|
|
|
# timeout = "5s"
|
2016-04-08 22:04:45 +00:00
|
|
|
## Output Name Template (same as graphite buckets)
|
|
|
|
## see https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_OUTPUT.md#graphite
|
|
|
|
template = "host.tags.measurement.field"
|
2015-10-26 18:31:21 +00:00
|
|
|
`
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
type LMetrics struct {
|
2015-10-26 18:31:21 +00:00
|
|
|
Gauges []*Gauge `json:"gauges"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Gauge struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Value float64 `json:"value"`
|
|
|
|
Source string `json:"source"`
|
|
|
|
MeasureTime int64 `json:"measure_time"`
|
|
|
|
}
|
|
|
|
|
|
|
|
const librato_api = "https://metrics-api.librato.com/v1/metrics"
|
|
|
|
|
|
|
|
func NewLibrato(apiUrl string) *Librato {
|
|
|
|
return &Librato{
|
|
|
|
apiUrl: apiUrl,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Librato) Connect() error {
|
|
|
|
if l.ApiUser == "" || l.ApiToken == "" {
|
|
|
|
return fmt.Errorf("api_user and api_token are required fields for librato output")
|
|
|
|
}
|
|
|
|
l.client = &http.Client{
|
|
|
|
Timeout: l.Timeout.Duration,
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
func (l *Librato) Write(metrics []telegraf.Metric) error {
|
|
|
|
if len(metrics) == 0 {
|
2015-10-26 18:31:21 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-01-27 23:15:14 +00:00
|
|
|
lmetrics := LMetrics{}
|
2015-12-19 21:19:43 +00:00
|
|
|
tempGauges := []*Gauge{}
|
|
|
|
metricCounter := 0
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
for _, m := range metrics {
|
|
|
|
if gauges, err := l.buildGauges(m); err == nil {
|
2015-12-19 21:19:43 +00:00
|
|
|
for _, gauge := range gauges {
|
|
|
|
tempGauges = append(tempGauges, gauge)
|
|
|
|
metricCounter++
|
2016-02-26 20:06:56 +00:00
|
|
|
if l.Debug {
|
|
|
|
log.Printf("[DEBUG] Got a gauge: %v\n", gauge)
|
|
|
|
}
|
2015-12-19 21:19:43 +00:00
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
} else {
|
2016-01-27 23:15:14 +00:00
|
|
|
log.Printf("unable to build Gauge for %s, skipping\n", m.Name())
|
2016-02-26 20:06:56 +00:00
|
|
|
if l.Debug {
|
|
|
|
log.Printf("[DEBUG] Couldn't build gauge: %v\n", err)
|
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-19 21:19:43 +00:00
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
lmetrics.Gauges = make([]*Gauge, metricCounter)
|
|
|
|
copy(lmetrics.Gauges, tempGauges[0:])
|
2016-02-26 20:06:56 +00:00
|
|
|
metricsBytes, err := json.Marshal(lmetrics)
|
2015-10-26 18:31:21 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to marshal Metrics, %s\n", err.Error())
|
2016-02-26 20:06:56 +00:00
|
|
|
} else {
|
|
|
|
if l.Debug {
|
|
|
|
log.Printf("[DEBUG] Librato request: %v\n", string(metricsBytes))
|
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
}
|
|
|
|
req, err := http.NewRequest("POST", l.apiUrl, bytes.NewBuffer(metricsBytes))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to create http.Request, %s\n", err.Error())
|
|
|
|
}
|
|
|
|
req.Header.Add("Content-Type", "application/json")
|
|
|
|
req.SetBasicAuth(l.ApiUser, l.ApiToken)
|
|
|
|
|
|
|
|
resp, err := l.client.Do(req)
|
|
|
|
if err != nil {
|
2016-02-26 20:06:56 +00:00
|
|
|
if l.Debug {
|
|
|
|
log.Printf("[DEBUG] Error POSTing metrics: %v\n", err.Error())
|
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
return fmt.Errorf("error POSTing metrics, %s\n", err.Error())
|
2016-02-26 20:06:56 +00:00
|
|
|
} else {
|
|
|
|
if l.Debug {
|
|
|
|
htmlData, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("[DEBUG] Couldn't get response! (%v)\n", err)
|
|
|
|
} else {
|
|
|
|
log.Printf("[DEBUG] Librato response: %v\n", string(htmlData))
|
|
|
|
}
|
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
}
|
2016-02-26 20:06:56 +00:00
|
|
|
|
2015-10-26 18:31:21 +00:00
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
if resp.StatusCode != 200 {
|
|
|
|
return fmt.Errorf("received bad status code, %d\n", resp.StatusCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Librato) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Librato) Description() string {
|
|
|
|
return "Configuration for Librato API to send metrics to."
|
|
|
|
}
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
func (l *Librato) buildGauges(m telegraf.Metric) ([]*Gauge, error) {
|
2015-12-19 21:19:43 +00:00
|
|
|
gauges := []*Gauge{}
|
2016-07-12 23:08:03 +00:00
|
|
|
bucket := graphite.SerializeBucketName(m.Name(), m.Tags(), l.Template, "")
|
2016-01-27 23:15:14 +00:00
|
|
|
for fieldName, value := range m.Fields() {
|
2015-12-19 21:19:43 +00:00
|
|
|
gauge := &Gauge{
|
2016-04-08 22:04:45 +00:00
|
|
|
Name: graphite.InsertField(bucket, fieldName),
|
2016-01-27 23:15:14 +00:00
|
|
|
MeasureTime: m.Time().Unix(),
|
2015-12-19 21:19:43 +00:00
|
|
|
}
|
2016-03-22 15:07:01 +00:00
|
|
|
if !gauge.verifyValue(value) {
|
|
|
|
continue
|
|
|
|
}
|
2015-12-19 21:19:43 +00:00
|
|
|
if err := gauge.setValue(value); err != nil {
|
|
|
|
return gauges, fmt.Errorf("unable to extract value from Fields, %s\n",
|
|
|
|
err.Error())
|
|
|
|
}
|
|
|
|
if l.SourceTag != "" {
|
2016-01-27 23:15:14 +00:00
|
|
|
if source, ok := m.Tags()[l.SourceTag]; ok {
|
2015-12-19 21:19:43 +00:00
|
|
|
gauge.Source = source
|
|
|
|
} else {
|
|
|
|
return gauges,
|
|
|
|
fmt.Errorf("undeterminable Source type from Field, %s\n",
|
|
|
|
l.SourceTag)
|
|
|
|
}
|
2015-10-26 18:31:21 +00:00
|
|
|
}
|
2016-02-26 20:06:56 +00:00
|
|
|
gauges = append(gauges, gauge)
|
|
|
|
}
|
|
|
|
if l.Debug {
|
|
|
|
fmt.Printf("[DEBUG] Built gauges: %v\n", gauges)
|
2015-10-26 18:31:21 +00:00
|
|
|
}
|
2015-12-19 21:19:43 +00:00
|
|
|
return gauges, nil
|
2015-10-26 18:31:21 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 15:07:01 +00:00
|
|
|
func (g *Gauge) verifyValue(v interface{}) bool {
|
|
|
|
switch v.(type) {
|
|
|
|
case string:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-10-26 18:31:21 +00:00
|
|
|
func (g *Gauge) setValue(v interface{}) error {
|
|
|
|
switch d := v.(type) {
|
|
|
|
case int:
|
|
|
|
g.Value = float64(int(d))
|
|
|
|
case int32:
|
|
|
|
g.Value = float64(int32(d))
|
|
|
|
case int64:
|
|
|
|
g.Value = float64(int64(d))
|
|
|
|
case float32:
|
|
|
|
g.Value = float64(d)
|
|
|
|
case float64:
|
|
|
|
g.Value = float64(d)
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("undeterminable type %+v", d)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Librato) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
outputs.Add("librato", func() telegraf.Output {
|
2015-10-26 18:31:21 +00:00
|
|
|
return NewLibrato(librato_api)
|
|
|
|
})
|
|
|
|
}
|