forked from nanowish/phpfpm-prometheus-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
591 lines (500 loc) · 16.7 KB
/
main.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
package main
import (
"encoding/json"
"errors"
"flag"
"fmt"
"io/ioutil"
"net/http"
"os"
"os/exec"
"os/signal"
"strconv"
"strings"
"sync"
"syscall"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/log"
"github.com/prometheus/common/version"
"github.com/tomasen/fcgi_client"
"golang.org/x/net/context"
"gopkg.in/ini.v1"
)
const (
namespace = "phpfpm"
)
type FpmPoolMetrics struct {
StartTime int `json:"start time"`
StartSince int `json:"start since"`
AcceptedConn int `json:"accepted conn"`
ListenQueue int `json:"listen queue"`
MaxListenQueue int `json:"max listen queue"`
ListenQueueLen int `json:"listen queue len"`
IdleProcesses int `json:"idle processes"`
ActiveProcesses int `json:"active processes"`
TotalProcesses int `json:"total processes"`
MaxActiveProcesses int `json:"max active processes"`
MaxChildrenReached int `json:"max children reached"`
SlowRequests int `json:"slow requests"`
Up int `json:"up"`
}
type PhpFpmPool struct {
Name string
Endpoint string
StatusUri string
networkType string
lastMetrics FpmPoolMetrics
mu sync.RWMutex
}
type PhpFpmPoolExporter struct {
poolsToMonitor []*PhpFpmPool
listenQueue, listenQueueLen, idleProcesses, activeProcesses, totalProcesses *prometheus.GaugeVec
startSince, acceptedConn, maxListenQueue, maxActiveProcesses, maxChildrenReached, slowRequests, up *prometheus.CounterVec
}
func (e *PhpFpmPoolExporter) resetMetrics() {
e.listenQueue.Reset()
e.listenQueueLen.Reset()
e.idleProcesses.Reset()
e.activeProcesses.Reset()
e.totalProcesses.Reset()
e.startSince.Reset()
e.acceptedConn.Reset()
e.maxListenQueue.Reset()
e.maxActiveProcesses.Reset()
e.up.Reset()
e.maxChildrenReached.Reset()
e.slowRequests.Reset()
}
func (p *PhpFpmPool) GetSyncedCopy() PhpFpmPool {
p.mu.Lock()
pfp := p
p.mu.Unlock()
return *pfp
}
func (p *PhpFpmPool) GetSyncedNetworkType() string {
p.mu.Lock()
nt := p.networkType
p.mu.Unlock()
return nt
}
func (p *PhpFpmPool) SetSyncedNetworkType(nt string) {
p.mu.Lock()
p.networkType = nt
p.mu.Unlock()
}
func (p *PhpFpmPool) PushSyncedLastMetrics(fpm *FpmPoolMetrics) {
p.mu.Lock()
p.lastMetrics = *fpm
p.mu.Unlock()
}
func (p *PhpFpmPool) GetSyncedLastMetricsCopy() FpmPoolMetrics {
p.mu.Lock()
lm := &(p).lastMetrics
p.mu.Unlock()
return *lm
}
func (e *PhpFpmPoolExporter) Describe(ch chan<- *prometheus.Desc) {
e.listenQueue.Describe(ch)
e.listenQueueLen.Describe(ch)
e.idleProcesses.Describe(ch)
e.activeProcesses.Describe(ch)
e.totalProcesses.Describe(ch)
e.startSince.Describe(ch)
e.acceptedConn.Describe(ch)
e.maxListenQueue.Describe(ch)
e.maxActiveProcesses.Describe(ch)
e.up.Describe(ch)
e.maxChildrenReached.Describe(ch)
e.slowRequests.Describe(ch)
}
func (e *PhpFpmPoolExporter) Collect(ch chan<- prometheus.Metric) {
e.resetMetrics()
for _, p := range e.poolsToMonitor {
lastMetric := p.GetSyncedLastMetricsCopy()
(e.listenQueue.WithLabelValues(p.Name)).Set(float64(lastMetric.ListenQueue))
(e.listenQueueLen.WithLabelValues(p.Name)).Set(float64(lastMetric.ListenQueueLen))
(e.idleProcesses.WithLabelValues(p.Name)).Set(float64(lastMetric.IdleProcesses))
(e.activeProcesses.WithLabelValues(p.Name)).Set(float64(lastMetric.ActiveProcesses))
(e.totalProcesses.WithLabelValues(p.Name)).Set(float64(lastMetric.TotalProcesses))
(e.startSince.WithLabelValues(p.Name)).Add(float64(lastMetric.StartSince))
(e.acceptedConn.WithLabelValues(p.Name)).Add(float64(lastMetric.AcceptedConn))
(e.maxListenQueue.WithLabelValues(p.Name)).Add(float64(lastMetric.MaxListenQueue))
(e.maxActiveProcesses.WithLabelValues(p.Name)).Add(float64(lastMetric.MaxActiveProcesses))
(e.up.WithLabelValues(p.Name)).Add(float64(lastMetric.Up))
(e.maxChildrenReached.WithLabelValues(p.Name)).Add(float64(lastMetric.MaxChildrenReached))
(e.slowRequests.WithLabelValues(p.Name)).Add(float64(lastMetric.SlowRequests))
(e.listenQueue.WithLabelValues(p.Name)).Collect(ch)
(e.listenQueueLen.WithLabelValues(p.Name)).Collect(ch)
(e.idleProcesses.WithLabelValues(p.Name)).Collect(ch)
(e.activeProcesses.WithLabelValues(p.Name)).Collect(ch)
(e.totalProcesses.WithLabelValues(p.Name)).Collect(ch)
(e.startSince.WithLabelValues(p.Name)).Collect(ch)
(e.acceptedConn.WithLabelValues(p.Name)).Collect(ch)
(e.maxListenQueue.WithLabelValues(p.Name)).Collect(ch)
(e.maxActiveProcesses.WithLabelValues(p.Name)).Collect(ch)
(e.up.WithLabelValues(p.Name)).Collect(ch)
(e.maxChildrenReached.WithLabelValues(p.Name)).Collect(ch)
(e.slowRequests.WithLabelValues(p.Name)).Collect(ch)
log.Debugln("Metrics collection completed!")
}
}
func NewPhpFpmPoolExporter(pools []*PhpFpmPool) *PhpFpmPoolExporter {
poolLabelNames := []string{"pool_name"}
return &PhpFpmPoolExporter{
poolsToMonitor: pools,
startSince: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Name: "start_since",
Help: "Number of seconds since FPM has started",
},
poolLabelNames,
),
acceptedConn: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Name: "accepted_conn",
Help: "The number of requests accepted by the pool",
},
poolLabelNames,
),
listenQueue: prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "listen_queue",
Help: "The number of requests in the queue of pending connections",
},
poolLabelNames,
),
maxListenQueue: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Name: "max_listen_queue",
Help: "The maximum number of requests in the queue of pending connections since FPM has started",
},
poolLabelNames,
),
listenQueueLen: prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "listen_queue_len",
Help: "The size of the socket queue of pending connections",
},
poolLabelNames,
),
idleProcesses: prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "idle_processes",
Help: "The number of idle processes",
},
poolLabelNames,
),
activeProcesses: prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "active_processes",
Help: "The number of active processes",
},
poolLabelNames,
),
totalProcesses: prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "total_processes",
Help: "The number of idle + active processes",
},
poolLabelNames,
),
maxActiveProcesses: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Name: "max_active_processes",
Help: "The maximum number of active processes since FPM has started",
},
poolLabelNames,
),
maxChildrenReached: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Name: "max_children_reached",
Help: "The number of times, the process limit has been reached, when pm tries to start more children (works only for pm 'dynamic' and 'ondemand')",
},
poolLabelNames,
),
slowRequests: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Name: "slow_requests",
Help: "The number of requests that exceeded your request_slowlog_timeout value",
},
poolLabelNames,
),
up: prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Name: "up",
Help: "Whether the PHP-FPM process is up.",
},
poolLabelNames,
),
}
}
func GetFilesIn(dirPath string) []string {
var poolFiles []string
if strings.HasSuffix(dirPath, "/") {
dirPath = strings.TrimRight(dirPath, "/")
}
dir, err := os.Open(dirPath)
if err != nil {
fmt.Errorf("%s", err)
return nil
}
defer dir.Close()
filesInfo, err := dir.Readdir(-1)
if err != nil {
fmt.Errorf("%s", err)
return nil
}
for i := 0; i < len(filesInfo); i++ {
if filesInfo[i].Mode().IsRegular() {
poolFiles = append(poolFiles, dirPath+"/"+filesInfo[i].Name())
}
}
return poolFiles
}
func PollFpmStatusMetrics(p *PhpFpmPool, fetcher func() (string, error), pollInterval int, mustQuit chan bool, done chan bool) {
var mts FpmPoolMetrics
var res string
var err error
for i := 0; i < 1; {
res, err = fetcher()
log.Debugln(p.Name, " - End of fetch logic")
if err != nil {
log.Errorln(err.Error())
// Mark PHP-PFPM process as down
mts.Up = 0
p.PushSyncedLastMetrics(&mts)
} else {
err = json.Unmarshal([]byte(res), &mts)
if err != nil {
log.Errorln(err.Error())
} else {
// Mark PHP-PFPM process as up
mts.Up = 1
log.Debugln(p.Name, " - StartTime read on status: ", strconv.Itoa(mts.StartTime))
log.Debugln(p.Name, " - StartSince read on status: ", strconv.Itoa(mts.StartSince))
log.Debugln(p.Name, " - AcceptedConn read on status: ", strconv.Itoa(mts.AcceptedConn))
log.Debugln(p.Name, " - ListenQueue read on status: ", strconv.Itoa(mts.ListenQueue))
log.Debugln(p.Name, " - MaxListenQueue read on status: ", strconv.Itoa(mts.MaxListenQueue))
log.Debugln(p.Name, " - ListenQueueLen read on status: ", strconv.Itoa(mts.ListenQueueLen))
log.Debugln(p.Name, " - IdleProcesses read on status: ", strconv.Itoa(mts.IdleProcesses))
log.Debugln(p.Name, " - ActiveProcesses read on status: ", strconv.Itoa(mts.ActiveProcesses))
log.Debugln(p.Name, " - TotalProcesses read on status: ", strconv.Itoa(mts.TotalProcesses))
log.Debugln(p.Name, " - MaxActiveProcesses read on status: ", strconv.Itoa(mts.MaxActiveProcesses))
log.Debugln(p.Name, " - MaxChildrenReached read on status: ", strconv.Itoa(mts.MaxChildrenReached))
log.Debugln(p.Name, " - SlowRequests read on status: ", strconv.Itoa(mts.SlowRequests))
log.Debugln(p.Name, " - Up status: ", strconv.Itoa(mts.Up))
p.PushSyncedLastMetrics(&mts)
log.Debugln(p.Name, " - Metrics pushed to pool structure")
}
}
time.Sleep(time.Duration(pollInterval * int(time.Second)))
select {
case <-mustQuit:
i = 1
log.Infoln("Goroutine received signal asking to quit")
done <- true
default:
continue
}
}
return
}
func NativeClientFcgiStatusFetcher(p *PhpFpmPool, fcgiConnectTimeout int) func() (string, error) {
poolCpy := p.GetSyncedCopy()
endpoint := poolCpy.Endpoint
env := make(map[string]string)
env["SCRIPT_NAME"] = poolCpy.StatusUri
env["SCRIPT_FILENAME"] = poolCpy.StatusUri
env["QUERY_STRING"] = "json"
env["SERVER_SOFTWARE"] = "go/fcgiclient"
return func() (string, error) {
netType := poolCpy.GetSyncedNetworkType()
isNetTypeSet := false
if netType == "" {
fileInfo, err := os.Stat(endpoint)
if err != nil {
netType = "tcp"
} else {
if fileInfo.Mode()&os.ModeSocket != 0 {
netType = "unix"
} else {
netType = "tcp"
}
}
log.Debugln(endpoint, " will be fetched through ", netType, " network type")
} else {
isNetTypeSet = true
}
fcgi, err := fcgiclient.DialTimeout(netType, endpoint, time.Duration(fcgiConnectTimeout*int(time.Millisecond)))
if err != nil {
return "", err
}
defer fcgi.Close()
resp, err := fcgi.Get(env)
if err != nil {
//fcgi.Close()
return "", err
}
content, err := ioutil.ReadAll(resp.Body)
if err != nil {
//fcgi.Close()
return "", err
}
if !isNetTypeSet {
poolCpy.SetSyncedNetworkType(netType)
log.Debugln(endpoint, " is a pool using ", netType, " network type")
}
//fcgi.Close()
return string(content), nil
}
}
func CgiFcgiFcgiStatusFetcher(p *PhpFpmPool, pollTimeout int, cgiFastCgiPath string, cgiFastCgiLdLibPath string) func() (string, error) {
poolCpy := p.GetSyncedCopy()
endpoint := poolCpy.Endpoint
env := os.Environ()
if cgiFastCgiLdLibPath != "" {
env = append(env, fmt.Sprintf("LD_LIBRARY_PATH=%s", cgiFastCgiLdLibPath))
}
env = append(env, fmt.Sprintf("SCRIPT_NAME=%s", poolCpy.StatusUri))
env = append(env, fmt.Sprintf("SCRIPT_FILENAME=%s", poolCpy.StatusUri))
env = append(env, "QUERY_STRING=json")
env = append(env, "REQUEST_METHOD=GET")
return func() (string, error) {
var data []byte
var err error
var strData []string
ctx := context.TODO()
ctxWithCancel, cancel := context.WithTimeout(ctx, time.Duration(pollTimeout*int(time.Second)))
defer cancel()
cmd := exec.CommandContext(ctxWithCancel, cgiFastCgiPath, "-bind", "-connect", endpoint)
cmd.Env = env
data, err = cmd.Output()
if err != nil {
return "", err
}
strData = strings.SplitAfter(string(data), "\r\n\r\n")
if len(strData) < 2 {
return "", errors.New("Unexpected cgi-fcgi response")
}
return strData[1], nil
}
}
func main() {
var (
listenAddress = flag.String("web.listen-address", ":9101", "Address to listen on for web interface and telemetry.")
metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.")
phpfpmPidFile = flag.String("phpfpm.pid-file", "/var/run/php5-fpm.pid", "Path to phpfpm's pid file.")
configDir = flag.String("phpfpm.config", "/etc/php5/fpm/pool.d/", "Pools conf dir")
pollInterval = flag.Int("phpfpm.poll-interval", 10, "Poll interval in seconds")
useNativeClient = flag.Bool("phpfpm.use-native-client", true, "Use a native go client to get status or use external cgi-fcgi command")
ncConnectTimeout = flag.Int("nc.connect-timeout", 500, "Native client connect timeout in ms")
pollTimeout = flag.Int("cgi-fcgi.poll-timeout", 2, "Poll timeout in seconds")
cgiFastCgiPath = flag.String("cgi-fcgi.path", "/usr/bin/cgi-fcgi", "cgi-fcgi program path")
cgiFastCgiLdLibPath = flag.String("cgi-fcgi.ld-library-path", "", "LD_LIBRARY_PATH value to run cgi-fcgi")
showVersion = flag.Bool("version", false, "Print version information.")
)
flag.Parse()
if *showVersion {
fmt.Fprintln(os.Stdout, version.Print("phpfpm_prometheus_exporter"))
os.Exit(0)
}
log.Infoln("Starting phpfpm_exporter", version.Info())
log.Infoln("Build context", version.BuildContext())
if *phpfpmPidFile != "" {
log.Debugln("Export master process metrics enabled")
procExporter := prometheus.NewProcessCollectorPIDFn(
func() (int, error) {
content, err := ioutil.ReadFile(*phpfpmPidFile)
if err != nil {
return 0, fmt.Errorf("Can't read pid file: %s", err)
}
value, err := strconv.Atoi(strings.TrimSpace(string(content)))
if err != nil {
return 0, fmt.Errorf("Can't parse pid file: %s", err)
}
return value, nil
}, namespace)
prometheus.MustRegister(procExporter)
} else {
log.Debugln("Export master process metrics disabled")
}
sigs := make(chan os.Signal)
mustQuit := make(chan bool)
done := make(chan bool)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
phpFpmPools := []*PhpFpmPool{}
confFiles := GetFilesIn(*configDir)
cfg := ini.Empty()
for _, cf := range confFiles {
log.Infoln("We will parse: ", cf)
err := cfg.Append(cf)
if err != nil {
fmt.Errorf("%f")
}
}
sections := cfg.SectionStrings()
sectionsCount := 0
for _, sect := range sections {
statusKey, err := cfg.Section(sect).GetKey("pm.status_path")
if err != nil {
continue
}
listenKey, err := cfg.Section(sect).GetKey("listen")
if err != nil {
continue
}
pool := PhpFpmPool{Name: sect, Endpoint: listenKey.String(), StatusUri: statusKey.String()}
sectionsCount++
var fetcher func() (string, error)
if *useNativeClient {
fetcher = NativeClientFcgiStatusFetcher(&pool, *ncConnectTimeout)
} else {
fetcher = CgiFcgiFcgiStatusFetcher(&pool, *pollTimeout, *cgiFastCgiPath, *cgiFastCgiLdLibPath)
}
go PollFpmStatusMetrics(&pool, fetcher, *pollInterval, mustQuit, done)
phpFpmPools = append(phpFpmPools, &pool)
}
log.Infoln("We will monitor ", sectionsCount, " phpfpm pool(s)")
phpFpmExporter := NewPhpFpmPoolExporter(phpFpmPools)
prometheus.MustRegister(phpFpmExporter)
prometheus.MustRegister(version.NewCollector("phpfpm_exporter"))
log.Infoln("Listening on", *listenAddress)
http.Handle(*metricsPath, promhttp.Handler())
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(`<html>
<head><title>PhpFpm Exporter</title></head>
<body>
<h1>PhpFpm Exporter</h1>
<p><a href='` + *metricsPath + `'>Metrics</a></p>
</body>
</html>`))
})
//log.Fatal(http.ListenAndServe(*listenAddress, nil))
go http.ListenAndServe(*listenAddress, nil)
log.Infoln("Awaiting quit signal")
<-sigs
for j := 0; j < sectionsCount; j++ {
mustQuit <- true
}
log.Infoln("Awaiting all done signals")
for j := 0; j < sectionsCount; j++ {
<-done
}
close(mustQuit)
close(done)
log.Infoln("Clean shutdown!")
}