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/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 int
|
2016-04-07 01:57:49 +00:00
|
|
|
Headers map[string]string
|
2016-03-31 10:18:19 +00:00
|
|
|
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)
|
2016-03-31 10:18:19 +00:00
|
|
|
address = "http://github.com"
|
2016-04-07 01:57:49 +00:00
|
|
|
## Set response_timeout (default 5 seconds)
|
|
|
|
response_timeout = 5
|
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
|
2016-04-07 16:31:06 +00:00
|
|
|
## 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
|
2016-04-07 16:31:06 +00:00
|
|
|
# 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
|
2016-03-31 10:18:19 +00:00
|
|
|
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{
|
2016-04-04 02:20:07 +00:00
|
|
|
Timeout: time.Second * ResponseTimeout,
|
2016-03-31 07:33:28 +00:00
|
|
|
}
|
2016-03-31 10:18:19 +00:00
|
|
|
|
2016-04-04 02:20:07 +00:00
|
|
|
if followRedirects == false {
|
2016-03-31 10:18:19 +00:00
|
|
|
client.CheckRedirect = func(req *http.Request, via []*http.Request) error {
|
|
|
|
return ErrRedirectAttempted
|
|
|
|
}
|
|
|
|
}
|
2016-04-04 02:20:07 +00:00
|
|
|
return client
|
|
|
|
}
|
|
|
|
|
2016-04-07 01:57:49 +00:00
|
|
|
// CreateHeaders takes a map of header strings and puts them
|
|
|
|
// into a http.Header Object
|
|
|
|
func CreateHeaders(headers map[string]string) http.Header {
|
|
|
|
httpHeaders := make(http.Header)
|
|
|
|
for key := range headers {
|
|
|
|
httpHeaders.Add(key, headers[key])
|
2016-04-04 02:20:07 +00:00
|
|
|
}
|
2016-04-07 01:57:49 +00:00
|
|
|
return httpHeaders
|
2016-04-04 02:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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, time.Duration(h.ResponseTimeout))
|
2016-03-31 10:18:19 +00:00
|
|
|
|
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
|
|
|
|
}
|
2016-04-07 01:57:49 +00:00
|
|
|
request.Header = CreateHeaders(h.Headers)
|
|
|
|
|
2016-03-31 07:33:28 +00:00
|
|
|
// Start Timer
|
|
|
|
start := time.Now()
|
|
|
|
resp, err := client.Do(request)
|
|
|
|
if err != nil {
|
2016-03-31 10:18:19 +00:00
|
|
|
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
|
2016-03-31 09:53:51 +00:00
|
|
|
if h.ResponseTimeout < 1 {
|
2016-04-07 01:57:49 +00:00
|
|
|
h.ResponseTimeout = 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
|
|
|
})
|
|
|
|
}
|