Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
325
plugins/inputs/tengine/tengine.go
Normal file
325
plugins/inputs/tengine/tengine.go
Normal file
|
@ -0,0 +1,325 @@
|
|||
//go:generate ../../../tools/readme_config_includer/generator
|
||||
package tengine
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
_ "embed"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/influxdata/telegraf"
|
||||
"github.com/influxdata/telegraf/config"
|
||||
"github.com/influxdata/telegraf/plugins/common/tls"
|
||||
"github.com/influxdata/telegraf/plugins/inputs"
|
||||
)
|
||||
|
||||
//go:embed sample.conf
|
||||
var sampleConfig string
|
||||
|
||||
type Tengine struct {
|
||||
Urls []string `toml:"urls"`
|
||||
ResponseTimeout config.Duration `toml:"response_timeout"`
|
||||
tls.ClientConfig
|
||||
|
||||
client *http.Client
|
||||
}
|
||||
|
||||
type tengineStatus struct {
|
||||
host string
|
||||
bytesIn uint64
|
||||
bytesOut uint64
|
||||
connTotal uint64
|
||||
reqTotal uint64
|
||||
http2xx uint64
|
||||
http3xx uint64
|
||||
http4xx uint64
|
||||
http5xx uint64
|
||||
httpOtherStatus uint64
|
||||
rt uint64
|
||||
upsReq uint64
|
||||
upsRt uint64
|
||||
upsTries uint64
|
||||
http200 uint64
|
||||
http206 uint64
|
||||
http302 uint64
|
||||
http304 uint64
|
||||
http403 uint64
|
||||
http404 uint64
|
||||
http416 uint64
|
||||
http499 uint64
|
||||
http500 uint64
|
||||
http502 uint64
|
||||
http503 uint64
|
||||
http504 uint64
|
||||
http508 uint64
|
||||
httpOtherDetailStatus uint64
|
||||
httpUps4xx uint64
|
||||
httpUps5xx uint64
|
||||
}
|
||||
|
||||
func (*Tengine) SampleConfig() string {
|
||||
return sampleConfig
|
||||
}
|
||||
|
||||
func (n *Tengine) Gather(acc telegraf.Accumulator) error {
|
||||
var wg sync.WaitGroup
|
||||
|
||||
// Create an HTTP client that is re-used for each
|
||||
// collection interval
|
||||
if n.client == nil {
|
||||
client, err := n.createHTTPClient()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
n.client = client
|
||||
}
|
||||
|
||||
for _, u := range n.Urls {
|
||||
addr, err := url.Parse(u)
|
||||
if err != nil {
|
||||
acc.AddError(fmt.Errorf("unable to parse address %q: %w", u, err))
|
||||
continue
|
||||
}
|
||||
|
||||
wg.Add(1)
|
||||
go func(addr *url.URL) {
|
||||
defer wg.Done()
|
||||
acc.AddError(n.gatherURL(addr, acc))
|
||||
}(addr)
|
||||
}
|
||||
|
||||
wg.Wait()
|
||||
return nil
|
||||
}
|
||||
|
||||
func (n *Tengine) createHTTPClient() (*http.Client, error) {
|
||||
tlsCfg, err := n.ClientConfig.TLSConfig()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if n.ResponseTimeout < config.Duration(time.Second) {
|
||||
n.ResponseTimeout = config.Duration(time.Second * 5)
|
||||
}
|
||||
|
||||
client := &http.Client{
|
||||
Transport: &http.Transport{
|
||||
TLSClientConfig: tlsCfg,
|
||||
},
|
||||
Timeout: time.Duration(n.ResponseTimeout),
|
||||
}
|
||||
|
||||
return client, nil
|
||||
}
|
||||
|
||||
func (n *Tengine) gatherURL(addr *url.URL, acc telegraf.Accumulator) error {
|
||||
var tStatus tengineStatus
|
||||
resp, err := n.client.Get(addr.String())
|
||||
if err != nil {
|
||||
return fmt.Errorf("error making HTTP request to %q: %w", addr.String(), err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
return fmt.Errorf("%s returned HTTP status %s", addr.String(), resp.Status)
|
||||
}
|
||||
r := bufio.NewReader(resp.Body)
|
||||
|
||||
for {
|
||||
line, err := r.ReadString('\n')
|
||||
|
||||
if err != nil || errors.Is(err, io.EOF) {
|
||||
break
|
||||
}
|
||||
lineSplit := strings.Split(strings.TrimSpace(line), ",")
|
||||
if len(lineSplit) != 30 {
|
||||
continue
|
||||
}
|
||||
tStatus.host = lineSplit[0]
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.bytesIn, err = strconv.ParseUint(lineSplit[1], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.bytesOut, err = strconv.ParseUint(lineSplit[2], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.connTotal, err = strconv.ParseUint(lineSplit[3], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.reqTotal, err = strconv.ParseUint(lineSplit[4], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http2xx, err = strconv.ParseUint(lineSplit[5], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http3xx, err = strconv.ParseUint(lineSplit[6], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http4xx, err = strconv.ParseUint(lineSplit[7], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http5xx, err = strconv.ParseUint(lineSplit[8], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.httpOtherStatus, err = strconv.ParseUint(lineSplit[9], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.rt, err = strconv.ParseUint(lineSplit[10], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.upsReq, err = strconv.ParseUint(lineSplit[11], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.upsRt, err = strconv.ParseUint(lineSplit[12], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.upsTries, err = strconv.ParseUint(lineSplit[13], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http200, err = strconv.ParseUint(lineSplit[14], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http206, err = strconv.ParseUint(lineSplit[15], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http302, err = strconv.ParseUint(lineSplit[16], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http304, err = strconv.ParseUint(lineSplit[17], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http403, err = strconv.ParseUint(lineSplit[18], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http404, err = strconv.ParseUint(lineSplit[19], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http416, err = strconv.ParseUint(lineSplit[20], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http499, err = strconv.ParseUint(lineSplit[21], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http500, err = strconv.ParseUint(lineSplit[22], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http502, err = strconv.ParseUint(lineSplit[23], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http503, err = strconv.ParseUint(lineSplit[24], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http504, err = strconv.ParseUint(lineSplit[25], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.http508, err = strconv.ParseUint(lineSplit[26], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.httpOtherDetailStatus, err = strconv.ParseUint(lineSplit[27], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.httpUps4xx, err = strconv.ParseUint(lineSplit[28], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tStatus.httpUps5xx, err = strconv.ParseUint(lineSplit[29], 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
tags := getTags(addr, tStatus.host)
|
||||
fields := map[string]interface{}{
|
||||
"bytes_in": tStatus.bytesIn,
|
||||
"bytes_out": tStatus.bytesOut,
|
||||
"conn_total": tStatus.connTotal,
|
||||
"req_total": tStatus.reqTotal,
|
||||
"http_2xx": tStatus.http2xx,
|
||||
"http_3xx": tStatus.http3xx,
|
||||
"http_4xx": tStatus.http4xx,
|
||||
"http_5xx": tStatus.http5xx,
|
||||
"http_other_status": tStatus.httpOtherStatus,
|
||||
"rt": tStatus.rt,
|
||||
"ups_req": tStatus.upsReq,
|
||||
"ups_rt": tStatus.upsRt,
|
||||
"ups_tries": tStatus.upsTries,
|
||||
"http_200": tStatus.http200,
|
||||
"http_206": tStatus.http206,
|
||||
"http_302": tStatus.http302,
|
||||
"http_304": tStatus.http304,
|
||||
"http_403": tStatus.http403,
|
||||
"http_404": tStatus.http404,
|
||||
"http_416": tStatus.http416,
|
||||
"http_499": tStatus.http499,
|
||||
"http_500": tStatus.http500,
|
||||
"http_502": tStatus.http502,
|
||||
"http_503": tStatus.http503,
|
||||
"http_504": tStatus.http504,
|
||||
"http_508": tStatus.http508,
|
||||
"http_other_detail_status": tStatus.httpOtherDetailStatus,
|
||||
"http_ups_4xx": tStatus.httpUps4xx,
|
||||
"http_ups_5xx": tStatus.httpUps5xx,
|
||||
}
|
||||
acc.AddFields("tengine", fields, tags)
|
||||
}
|
||||
|
||||
// Return the potential error of the loop-read
|
||||
return err
|
||||
}
|
||||
|
||||
// Get tag(s) for the tengine plugin
|
||||
func getTags(addr *url.URL, serverName string) map[string]string {
|
||||
h := addr.Host
|
||||
host, port, err := net.SplitHostPort(h)
|
||||
if err != nil {
|
||||
host = addr.Host
|
||||
if addr.Scheme == "http" {
|
||||
port = "80"
|
||||
} else if addr.Scheme == "https" {
|
||||
port = "443"
|
||||
} else {
|
||||
port = ""
|
||||
}
|
||||
}
|
||||
return map[string]string{"server": host, "port": port, "server_name": serverName}
|
||||
}
|
||||
|
||||
func init() {
|
||||
inputs.Add("tengine", func() telegraf.Input {
|
||||
return &Tengine{}
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue