-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmetrics.go
81 lines (74 loc) · 3.2 KB
/
metrics.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package main
import (
"bytes"
"fmt"
"io"
"reflect"
"strconv"
)
// Metrics contains the status data collected from PHP-FPM.
type Metrics struct {
StartSince int `help:"Seconds since FPM start" type:"counter" name:"php_fpm_start_since"`
AcceptedConn int `help:"Total of accepted connections" type:"counter" name:"php_fpm_accepted_conn"`
ListenQueue int `help:"Number of connections that have been initiated but not yet accepted" type:"gauge" name:"php_fpm_listen_queue"`
MaxListenQueue int `help:"Max. connections the listen queue has reached since FPM start" type:"counter" name:"php_fpm_max_listen_queue"`
ListenQueueLength int `help:"Maximum number of connections that can be queued" type:"gauge" name:"php_fpm_listen_queue_length"`
IdleProcesses int `help:"Idle process count" type:"gauge" name:"php_fpm_idle_processes"`
ActiveProcesses int `help:"Active process count" type:"gauge" name:"php_fpm_active_processes"`
TotalProcesses int `help:"Total process count" type:"gauge" name:"php_fpm_total_processes"`
MaxActiveProcesses int `help:"Maximum active process count" type:"counter" name:"php_fpm_max_active_processes"`
MaxChildrenReached int `help:"Number of times the process limit has been reached" type:"counter" name:"php_fpm_max_children_reached"`
SlowRequests int `help:"Number of requests that exceed request_slowlog_timeout" type:"counter" name:"php_fpm_slow_requests"`
ScrapeFailures int `help:"Number of errors while scraping php_fpm" type:"counter" name:"php_fpm_exporter_scrape_failures_total"`
}
// NewMetricsFromMatches creates a new Metrics instance and populates it with given data.
func NewMetricsFromMatches(matches [][]string) *Metrics {
metrics := &Metrics{}
metrics.populateFromMatches(matches)
return metrics
}
func (m *Metrics) populateFromMatches(matches [][]string) {
for _, match := range matches {
key := match[1]
value := match[2]
switch key {
case "start since":
m.StartSince, _ = strconv.Atoi(value)
case "accepted conn":
m.AcceptedConn, _ = strconv.Atoi(value)
case "listen queue":
m.ListenQueue, _ = strconv.Atoi(value)
case "max listen queue":
m.MaxListenQueue, _ = strconv.Atoi(value)
case "listen queue len":
m.ListenQueueLength, _ = strconv.Atoi(value)
case "idle processes":
m.IdleProcesses, _ = strconv.Atoi(value)
case "active processes":
m.ActiveProcesses, _ = strconv.Atoi(value)
case "total processes":
m.TotalProcesses, _ = strconv.Atoi(value)
case "max active processes":
m.MaxActiveProcesses, _ = strconv.Atoi(value)
case "max children reached":
m.MaxChildrenReached, _ = strconv.Atoi(value)
case "slow requests":
m.SlowRequests, _ = strconv.Atoi(value)
case "scrape failure":
m.ScrapeFailures, _ = strconv.Atoi(value)
}
}
}
func (m *Metrics) WriteTo(w io.Writer) {
typ := reflect.TypeOf(*m)
val := reflect.ValueOf(*m)
buf := &bytes.Buffer{}
for i := 0; i < typ.NumField(); i++ {
field := typ.Field(i)
name := field.Tag.Get("name")
buf.WriteString(fmt.Sprintf("# HELP %s %s\n", name, field.Tag.Get("help")))
buf.WriteString(fmt.Sprintf("# TYPE %s %s\n", name, field.Tag.Get("type")))
buf.WriteString(fmt.Sprintf("%s %d\n", name, val.Field(i).Int()))
}
io.Copy(w, buf)
}