telegraf/plugins/inputs/http_response/http_response.go

152 lines
3.6 KiB
Go
Raw Normal View History

2016-03-31 07:33:28 +00:00
package http_response
import (
"errors"
2016-03-31 11:06:47 +00:00
"io"
2016-03-31 07:33:28 +00:00
"net/http"
"net/url"
2016-03-31 09:53:51 +00:00
"strings"
2016-03-31 07:33:28 +00:00
"time"
"github.com/influxdata/telegraf"
"github.com/influxdata/telegraf/internal"
2016-03-31 07:33:28 +00:00
"github.com/influxdata/telegraf/plugins/inputs"
)
2016-03-31 09:53:51 +00:00
// HTTPResponse struct
type HTTPResponse struct {
2016-03-31 07:33:28 +00:00
Address string
2016-03-31 11:06:47 +00:00
Body string
2016-03-31 07:33:28 +00:00
Method string
ResponseTimeout internal.Duration
Headers map[string]string
FollowRedirects bool
2016-03-31 07:33:28 +00:00
}
2016-03-31 09:53:51 +00:00
// Description returns the plugin Description
func (h *HTTPResponse) Description() string {
2016-03-31 07:33:28 +00:00
return "HTTP/HTTPS request given an address a method and a timeout"
}
var sampleConfig = `
## Server address (default http://localhost)
address = "http://github.com"
## Set response_timeout (default 5 seconds)
response_timeout = "5s"
2016-03-31 11:06:47 +00:00
## HTTP Request Method
2016-03-31 07:33:28 +00:00
method = "GET"
2016-04-04 02:20:07 +00:00
## Whether to follow redirects from the server (defaults to false)
follow_redirects = true
## HTTP Request Headers (all values must be strings)
# [inputs.http_response.headers]
# Host = "github.com"
2016-04-04 02:20:07 +00:00
## Optional HTTP Request Body
# body = '''
# {'fake':'data'}
# '''
2016-03-31 07:33:28 +00:00
`
2016-03-31 09:53:51 +00:00
// SampleConfig returns the plugin SampleConfig
func (h *HTTPResponse) SampleConfig() string {
2016-03-31 07:33:28 +00:00
return sampleConfig
}
2016-03-31 11:06:47 +00:00
// ErrRedirectAttempted indicates that a redirect occurred
var ErrRedirectAttempted = errors.New("redirect")
2016-04-04 02:20:07 +00:00
// CreateHttpClient creates an http client which will timeout at the specified
// timeout period and can follow redirects if specified
func CreateHttpClient(followRedirects bool, ResponseTimeout time.Duration) *http.Client {
2016-03-31 07:33:28 +00:00
client := &http.Client{
Timeout: ResponseTimeout,
2016-03-31 07:33:28 +00:00
}
2016-04-04 02:20:07 +00:00
if followRedirects == false {
client.CheckRedirect = func(req *http.Request, via []*http.Request) error {
return ErrRedirectAttempted
}
}
2016-04-04 02:20:07 +00:00
return client
}
// HTTPGather gathers all fields and returns any errors it encounters
func (h *HTTPResponse) HTTPGather() (map[string]interface{}, error) {
// Prepare fields
fields := make(map[string]interface{})
client := CreateHttpClient(h.FollowRedirects, h.ResponseTimeout.Duration)
2016-03-31 11:06:47 +00:00
var body io.Reader
if h.Body != "" {
body = strings.NewReader(h.Body)
}
request, err := http.NewRequest(h.Method, h.Address, body)
2016-03-31 07:33:28 +00:00
if err != nil {
return nil, err
}
for key, val := range h.Headers {
request.Header.Add(key, val)
if key == "Host" {
request.Host = val
}
}
2016-03-31 07:33:28 +00:00
// Start Timer
start := time.Now()
resp, err := client.Do(request)
if err != nil {
if h.FollowRedirects {
return nil, err
}
if urlError, ok := err.(*url.Error); ok &&
urlError.Err == ErrRedirectAttempted {
err = nil
} else {
return nil, err
}
2016-03-31 07:33:28 +00:00
}
fields["response_time"] = time.Since(start).Seconds()
fields["http_response_code"] = resp.StatusCode
return fields, nil
}
2016-03-31 09:53:51 +00:00
// Gather gets all metric fields and tags and returns any errors it encounters
func (h *HTTPResponse) Gather(acc telegraf.Accumulator) error {
2016-03-31 07:33:28 +00:00
// Set default values
if h.ResponseTimeout.Duration < time.Second {
h.ResponseTimeout.Duration = time.Second * 5
2016-03-31 07:33:28 +00:00
}
// Check send and expected string
2016-03-31 09:53:51 +00:00
if h.Method == "" {
h.Method = "GET"
2016-03-31 07:33:28 +00:00
}
2016-03-31 09:53:51 +00:00
if h.Address == "" {
h.Address = "http://localhost"
2016-03-31 07:33:28 +00:00
}
2016-03-31 09:53:51 +00:00
addr, err := url.Parse(h.Address)
2016-03-31 07:33:28 +00:00
if err != nil {
return err
}
if addr.Scheme != "http" && addr.Scheme != "https" {
return errors.New("Only http and https are supported")
}
// Prepare data
2016-03-31 09:53:51 +00:00
tags := map[string]string{"server": h.Address, "method": h.Method}
2016-03-31 07:33:28 +00:00
var fields map[string]interface{}
// Gather data
2016-03-31 09:53:51 +00:00
fields, err = h.HTTPGather()
2016-03-31 07:33:28 +00:00
if err != nil {
return err
}
// Add metrics
acc.AddFields("http_response", fields, tags)
return nil
}
func init() {
inputs.Add("http_response", func() telegraf.Input {
2016-03-31 09:53:51 +00:00
return &HTTPResponse{}
2016-03-31 07:33:28 +00:00
})
}