2015-08-27 09:24:26 +00:00
|
|
|
package apache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2016-01-07 20:39:43 +00:00
|
|
|
"github.com/influxdb/telegraf/plugins/inputs"
|
2015-08-27 09:24:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Apache struct {
|
|
|
|
Urls []string
|
|
|
|
}
|
|
|
|
|
|
|
|
var sampleConfig = `
|
2015-10-15 21:53:29 +00:00
|
|
|
# An array of Apache status URI to gather stats.
|
|
|
|
urls = ["http://localhost/server-status?auto"]
|
2015-08-27 09:24:26 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
func (n *Apache) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Apache) Description() string {
|
|
|
|
return "Read Apache status information (mod_status)"
|
|
|
|
}
|
|
|
|
|
2016-01-07 20:39:43 +00:00
|
|
|
func (n *Apache) Gather(acc inputs.Accumulator) error {
|
2015-08-27 09:24:26 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
var outerr error
|
|
|
|
|
|
|
|
for _, u := range n.Urls {
|
|
|
|
addr, err := url.Parse(u)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Unable to parse address '%s': %s", u, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Add(1)
|
|
|
|
go func(addr *url.URL) {
|
|
|
|
defer wg.Done()
|
|
|
|
outerr = n.gatherUrl(addr, acc)
|
|
|
|
}(addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
return outerr
|
|
|
|
}
|
|
|
|
|
|
|
|
var tr = &http.Transport{
|
|
|
|
ResponseHeaderTimeout: time.Duration(3 * time.Second),
|
|
|
|
}
|
|
|
|
|
|
|
|
var client = &http.Client{Transport: tr}
|
|
|
|
|
2016-01-07 20:39:43 +00:00
|
|
|
func (n *Apache) gatherUrl(addr *url.URL, acc inputs.Accumulator) error {
|
2015-08-27 09:24:26 +00:00
|
|
|
resp, err := client.Get(addr.String())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error making HTTP request to %s: %s", addr.String(), err)
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
return fmt.Errorf("%s returned HTTP status %s", addr.String(), resp.Status)
|
|
|
|
}
|
2015-10-15 21:53:29 +00:00
|
|
|
|
2015-08-27 09:24:26 +00:00
|
|
|
tags := getTags(addr)
|
2015-10-15 21:53:29 +00:00
|
|
|
|
2015-08-27 09:24:26 +00:00
|
|
|
sc := bufio.NewScanner(resp.Body)
|
2015-12-14 19:10:55 +00:00
|
|
|
fields := make(map[string]interface{})
|
2015-08-27 09:24:26 +00:00
|
|
|
for sc.Scan() {
|
2015-10-15 21:53:29 +00:00
|
|
|
line := sc.Text()
|
|
|
|
if strings.Contains(line, ":") {
|
|
|
|
parts := strings.SplitN(line, ":", 2)
|
|
|
|
key, part := strings.Replace(parts[0], " ", "", -1), strings.TrimSpace(parts[1])
|
|
|
|
|
|
|
|
switch key {
|
|
|
|
case "Scoreboard":
|
2015-12-14 19:10:55 +00:00
|
|
|
for field, value := range n.gatherScores(part) {
|
|
|
|
fields[field] = value
|
|
|
|
}
|
2015-10-15 21:53:29 +00:00
|
|
|
default:
|
2015-11-13 19:51:37 +00:00
|
|
|
value, err := strconv.ParseFloat(part, 64)
|
2015-10-15 21:53:29 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
2015-12-14 19:10:55 +00:00
|
|
|
fields[key] = value
|
2015-10-15 21:53:29 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-27 09:24:26 +00:00
|
|
|
}
|
2015-12-14 19:10:55 +00:00
|
|
|
acc.AddFields("apache", fields, tags)
|
2015-08-27 09:24:26 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-12-14 19:10:55 +00:00
|
|
|
func (n *Apache) gatherScores(data string) map[string]interface{} {
|
2015-10-15 21:53:29 +00:00
|
|
|
var waiting, open int = 0, 0
|
|
|
|
var S, R, W, K, D, C, L, G, I int = 0, 0, 0, 0, 0, 0, 0, 0, 0
|
|
|
|
|
|
|
|
for _, s := range strings.Split(data, "") {
|
|
|
|
|
|
|
|
switch s {
|
|
|
|
case "_":
|
|
|
|
waiting++
|
|
|
|
case "S":
|
|
|
|
S++
|
|
|
|
case "R":
|
|
|
|
R++
|
|
|
|
case "W":
|
|
|
|
W++
|
|
|
|
case "K":
|
|
|
|
K++
|
|
|
|
case "D":
|
|
|
|
D++
|
|
|
|
case "C":
|
|
|
|
C++
|
|
|
|
case "L":
|
|
|
|
L++
|
|
|
|
case "G":
|
|
|
|
G++
|
|
|
|
case "I":
|
|
|
|
I++
|
|
|
|
case ".":
|
|
|
|
open++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-14 19:10:55 +00:00
|
|
|
fields := map[string]interface{}{
|
|
|
|
"scboard_waiting": float64(waiting),
|
|
|
|
"scboard_starting": float64(S),
|
|
|
|
"scboard_reading": float64(R),
|
|
|
|
"scboard_sending": float64(W),
|
|
|
|
"scboard_keepalive": float64(K),
|
|
|
|
"scboard_dnslookup": float64(D),
|
|
|
|
"scboard_closing": float64(C),
|
|
|
|
"scboard_logging": float64(L),
|
|
|
|
"scboard_finishing": float64(G),
|
|
|
|
"scboard_idle_cleanup": float64(I),
|
|
|
|
"scboard_open": float64(open),
|
|
|
|
}
|
|
|
|
return fields
|
2015-08-27 09:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get tag(s) for the apache plugin
|
|
|
|
func getTags(addr *url.URL) map[string]string {
|
|
|
|
h := addr.Host
|
2015-09-22 17:37:13 +00:00
|
|
|
host, port, err := net.SplitHostPort(h)
|
2015-10-15 21:53:29 +00:00
|
|
|
if err != nil {
|
|
|
|
host = addr.Host
|
|
|
|
if addr.Scheme == "http" {
|
|
|
|
port = "80"
|
|
|
|
} else if addr.Scheme == "https" {
|
|
|
|
port = "443"
|
|
|
|
} else {
|
|
|
|
port = ""
|
|
|
|
}
|
2015-08-27 09:24:26 +00:00
|
|
|
}
|
2015-09-22 17:37:13 +00:00
|
|
|
return map[string]string{"server": host, "port": port}
|
2015-08-27 09:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-07 20:39:43 +00:00
|
|
|
inputs.Add("apache", func() inputs.Input {
|
2015-08-27 09:24:26 +00:00
|
|
|
return &Apache{}
|
|
|
|
})
|
|
|
|
}
|