2015-08-04 21:48:13 +00:00
|
|
|
package httpjson
|
|
|
|
|
|
|
|
import (
|
2015-08-14 21:33:51 +00:00
|
|
|
"errors"
|
2015-08-04 21:48:13 +00:00
|
|
|
"fmt"
|
2015-08-14 21:33:51 +00:00
|
|
|
"io/ioutil"
|
2015-08-04 21:48:13 +00:00
|
|
|
"net/http"
|
2015-08-14 21:33:51 +00:00
|
|
|
"net/url"
|
|
|
|
"strings"
|
2015-08-04 21:48:13 +00:00
|
|
|
"sync"
|
2016-01-08 01:49:14 +00:00
|
|
|
"time"
|
2015-08-14 21:33:51 +00:00
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2016-01-20 18:57:35 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
2016-02-06 00:36:35 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/parsers"
|
2015-08-04 21:48:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type HttpJson struct {
|
2015-08-14 21:33:51 +00:00
|
|
|
Name string
|
|
|
|
Servers []string
|
|
|
|
Method string
|
2015-10-17 11:38:50 +00:00
|
|
|
TagKeys []string
|
2015-08-14 21:33:51 +00:00
|
|
|
Parameters map[string]string
|
2016-01-26 13:18:22 +00:00
|
|
|
Headers map[string]string
|
2015-12-19 22:29:07 +00:00
|
|
|
client HTTPClient
|
2015-08-14 21:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type HTTPClient interface {
|
|
|
|
// Returns the result of an http request
|
|
|
|
//
|
|
|
|
// Parameters:
|
|
|
|
// req: HTTP request object
|
|
|
|
//
|
|
|
|
// Returns:
|
|
|
|
// http.Response: HTTP respons object
|
|
|
|
// error : Any error that may have occurred
|
|
|
|
MakeRequest(req *http.Request) (*http.Response, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type RealHTTPClient struct {
|
|
|
|
client *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c RealHTTPClient) MakeRequest(req *http.Request) (*http.Response, error) {
|
|
|
|
return c.client.Do(req)
|
2015-08-04 21:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var sampleConfig = `
|
2016-02-09 05:57:26 +00:00
|
|
|
### NOTE This plugin only reads numerical measurements, strings and booleans
|
|
|
|
### will be ignored.
|
2016-01-25 20:29:05 +00:00
|
|
|
|
2016-02-09 05:57:26 +00:00
|
|
|
### a name for the service being polled
|
2015-12-19 22:29:07 +00:00
|
|
|
name = "webserver_stats"
|
|
|
|
|
2016-02-09 05:57:26 +00:00
|
|
|
### URL of each server in the service's cluster
|
2015-12-19 22:29:07 +00:00
|
|
|
servers = [
|
|
|
|
"http://localhost:9999/stats/",
|
|
|
|
"http://localhost:9998/stats/",
|
|
|
|
]
|
|
|
|
|
2016-02-09 05:57:26 +00:00
|
|
|
### HTTP method to use (case-sensitive)
|
2015-12-19 22:29:07 +00:00
|
|
|
method = "GET"
|
|
|
|
|
2016-02-09 05:57:26 +00:00
|
|
|
### List of tag names to extract from top-level of JSON server response
|
2015-12-19 22:29:07 +00:00
|
|
|
# tag_keys = [
|
|
|
|
# "my_tag_1",
|
|
|
|
# "my_tag_2"
|
|
|
|
# ]
|
|
|
|
|
2016-02-09 05:57:26 +00:00
|
|
|
### HTTP parameters (all values must be strings)
|
2016-01-07 20:39:43 +00:00
|
|
|
[inputs.httpjson.parameters]
|
2015-12-19 22:29:07 +00:00
|
|
|
event_type = "cpu_spike"
|
|
|
|
threshold = "0.75"
|
2016-01-26 13:18:22 +00:00
|
|
|
|
2016-02-09 05:57:26 +00:00
|
|
|
### HTTP Header parameters (all values must be strings)
|
2016-01-26 13:18:22 +00:00
|
|
|
# [inputs.httpjson.headers]
|
|
|
|
# X-Auth-Token = "my-xauth-token"
|
|
|
|
# apiVersion = "v1"
|
2015-08-04 21:48:13 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
func (h *HttpJson) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HttpJson) Description() string {
|
|
|
|
return "Read flattened metrics from one or more JSON HTTP endpoints"
|
|
|
|
}
|
|
|
|
|
2015-08-14 21:33:51 +00:00
|
|
|
// Gathers data for all servers.
|
2016-01-27 21:21:36 +00:00
|
|
|
func (h *HttpJson) Gather(acc telegraf.Accumulator) error {
|
2015-08-04 21:48:13 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
2015-12-19 22:29:07 +00:00
|
|
|
errorChannel := make(chan error, len(h.Servers))
|
|
|
|
|
|
|
|
for _, server := range h.Servers {
|
|
|
|
wg.Add(1)
|
|
|
|
go func(server string) {
|
|
|
|
defer wg.Done()
|
|
|
|
if err := h.gatherServer(acc, server); err != nil {
|
|
|
|
errorChannel <- err
|
|
|
|
}
|
|
|
|
}(server)
|
2015-08-04 21:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wg.Wait()
|
2015-08-14 21:33:51 +00:00
|
|
|
close(errorChannel)
|
2015-08-04 21:48:13 +00:00
|
|
|
|
2015-08-14 21:33:51 +00:00
|
|
|
// Get all errors and return them as one giant error
|
|
|
|
errorStrings := []string{}
|
|
|
|
for err := range errorChannel {
|
|
|
|
errorStrings = append(errorStrings, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(errorStrings) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return errors.New(strings.Join(errorStrings, "\n"))
|
2015-08-04 21:48:13 +00:00
|
|
|
}
|
|
|
|
|
2015-08-14 21:33:51 +00:00
|
|
|
// Gathers data from a particular server
|
|
|
|
// Parameters:
|
|
|
|
// acc : The telegraf Accumulator to use
|
|
|
|
// serverURL: endpoint to send request to
|
|
|
|
// service : the service being queried
|
|
|
|
//
|
|
|
|
// Returns:
|
|
|
|
// error: Any error that may have occurred
|
2015-11-02 23:19:37 +00:00
|
|
|
func (h *HttpJson) gatherServer(
|
2016-01-27 21:21:36 +00:00
|
|
|
acc telegraf.Accumulator,
|
2015-11-02 23:19:37 +00:00
|
|
|
serverURL string,
|
|
|
|
) error {
|
2016-01-08 01:49:14 +00:00
|
|
|
resp, responseTime, err := h.sendRequest(serverURL)
|
|
|
|
|
2015-08-04 21:48:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-02-06 00:36:35 +00:00
|
|
|
var msrmnt_name string
|
|
|
|
if h.Name == "" {
|
|
|
|
msrmnt_name = "httpjson"
|
|
|
|
} else {
|
|
|
|
msrmnt_name = "httpjson_" + h.Name
|
2015-08-14 21:33:51 +00:00
|
|
|
}
|
|
|
|
tags := map[string]string{
|
|
|
|
"server": serverURL,
|
2015-08-04 21:48:13 +00:00
|
|
|
}
|
|
|
|
|
2016-02-06 00:36:35 +00:00
|
|
|
parser, err := parsers.NewJSONParser(msrmnt_name, h.TagKeys, tags)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-10-16 14:10:08 +00:00
|
|
|
}
|
|
|
|
|
2016-02-06 00:36:35 +00:00
|
|
|
metrics, err := parser.Parse([]byte(resp))
|
2015-12-14 22:57:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-02-06 00:36:35 +00:00
|
|
|
for _, metric := range metrics {
|
|
|
|
fields := make(map[string]interface{})
|
|
|
|
for k, v := range metric.Fields() {
|
|
|
|
fields[k] = v
|
|
|
|
}
|
|
|
|
fields["response_time"] = responseTime
|
|
|
|
acc.AddFields(metric.Name(), fields, metric.Tags())
|
2015-12-14 22:57:17 +00:00
|
|
|
}
|
2015-08-14 21:33:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-08-04 21:48:13 +00:00
|
|
|
|
2015-08-14 21:33:51 +00:00
|
|
|
// Sends an HTTP request to the server using the HttpJson object's HTTPClient
|
|
|
|
// Parameters:
|
|
|
|
// serverURL: endpoint to send request to
|
|
|
|
//
|
|
|
|
// Returns:
|
|
|
|
// string: body of the response
|
|
|
|
// error : Any error that may have occurred
|
2016-01-08 01:49:14 +00:00
|
|
|
func (h *HttpJson) sendRequest(serverURL string) (string, float64, error) {
|
2015-08-14 21:33:51 +00:00
|
|
|
// Prepare URL
|
|
|
|
requestURL, err := url.Parse(serverURL)
|
2015-08-04 21:48:13 +00:00
|
|
|
if err != nil {
|
2016-01-08 01:49:14 +00:00
|
|
|
return "", -1, fmt.Errorf("Invalid server URL \"%s\"", serverURL)
|
2015-08-04 21:48:13 +00:00
|
|
|
}
|
|
|
|
|
2015-08-14 21:33:51 +00:00
|
|
|
params := url.Values{}
|
2015-12-19 22:29:07 +00:00
|
|
|
for k, v := range h.Parameters {
|
2015-08-14 21:33:51 +00:00
|
|
|
params.Add(k, v)
|
|
|
|
}
|
|
|
|
requestURL.RawQuery = params.Encode()
|
|
|
|
|
|
|
|
// Create + send request
|
2015-12-19 22:29:07 +00:00
|
|
|
req, err := http.NewRequest(h.Method, requestURL.String(), nil)
|
2015-08-14 21:33:51 +00:00
|
|
|
if err != nil {
|
2016-01-08 01:49:14 +00:00
|
|
|
return "", -1, err
|
2015-08-14 21:33:51 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 13:18:22 +00:00
|
|
|
// Add header parameters
|
|
|
|
for k, v := range h.Headers {
|
2016-02-02 19:22:15 +00:00
|
|
|
if strings.ToLower(k) == "host" {
|
|
|
|
req.Host = v
|
|
|
|
} else {
|
|
|
|
req.Header.Add(k, v)
|
|
|
|
}
|
2016-01-26 13:18:22 +00:00
|
|
|
}
|
|
|
|
|
2016-01-08 01:49:14 +00:00
|
|
|
start := time.Now()
|
2015-08-14 21:33:51 +00:00
|
|
|
resp, err := h.client.MakeRequest(req)
|
|
|
|
if err != nil {
|
2016-01-08 01:49:14 +00:00
|
|
|
return "", -1, err
|
2015-08-14 21:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
defer resp.Body.Close()
|
2016-01-08 01:49:14 +00:00
|
|
|
responseTime := time.Since(start).Seconds()
|
|
|
|
|
2015-08-14 21:33:51 +00:00
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
2016-01-08 01:49:14 +00:00
|
|
|
return string(body), responseTime, err
|
2015-08-04 21:48:13 +00:00
|
|
|
}
|
|
|
|
|
2015-08-14 21:33:51 +00:00
|
|
|
// Process response
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
err = fmt.Errorf("Response from url \"%s\" has status code %d (%s), expected %d (%s)",
|
|
|
|
requestURL.String(),
|
|
|
|
resp.StatusCode,
|
|
|
|
http.StatusText(resp.StatusCode),
|
|
|
|
http.StatusOK,
|
|
|
|
http.StatusText(http.StatusOK))
|
2016-01-08 01:49:14 +00:00
|
|
|
return string(body), responseTime, err
|
2015-08-14 21:33:51 +00:00
|
|
|
}
|
|
|
|
|
2016-01-08 01:49:14 +00:00
|
|
|
return string(body), responseTime, err
|
2015-08-04 21:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
inputs.Add("httpjson", func() telegraf.Input {
|
2015-08-14 21:33:51 +00:00
|
|
|
return &HttpJson{client: RealHTTPClient{client: &http.Client{}}}
|
2015-08-04 21:48:13 +00:00
|
|
|
})
|
|
|
|
}
|