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
|
package http
import (
"strconv"
"github.com/prometheus/client_golang/prometheus"
handler "github.com/spiral/roadrunner/v2/pkg/worker_handler"
)
func (p *Plugin) MetricsCollector() []prometheus.Collector {
// p - implements Exporter interface (workers)
// other - request duration and count
return []prometheus.Collector{p, p.requestsExporter.requestDuration, p.requestsExporter.requestCounter}
}
func (p *Plugin) metricsCallback(event interface{}) {
switch e := event.(type) {
case handler.ResponseEvent:
p.requestsExporter.requestCounter.With(prometheus.Labels{
"status": strconv.Itoa(e.Response.Status),
}).Inc()
p.requestsExporter.requestDuration.With(prometheus.Labels{
"status": strconv.Itoa(e.Response.Status),
}).Observe(e.Elapsed().Seconds())
case handler.ErrorEvent:
p.requestsExporter.requestCounter.With(prometheus.Labels{
"status": "500",
}).Inc()
p.requestsExporter.requestDuration.With(prometheus.Labels{
"status": "500",
}).Observe(e.Elapsed().Seconds())
}
}
type workersExporter struct {
wm *prometheus.Desc
workersMemory uint64
}
func newWorkersExporter() *workersExporter {
return &workersExporter{
wm: prometheus.NewDesc("rr_http_workers_memory_bytes", "Memory usage by HTTP workers.", nil, nil),
workersMemory: 0,
}
}
func (p *Plugin) Describe(d chan<- *prometheus.Desc) {
// send description
d <- p.workersExporter.wm
}
func (p *Plugin) Collect(ch chan<- prometheus.Metric) {
// get the copy of the processes
workers := p.Workers()
// cumulative RSS memory in bytes
var cum uint64
// collect the memory
for i := 0; i < len(workers); i++ {
cum += workers[i].MemoryUsage
}
// send the values to the prometheus
ch <- prometheus.MustNewConstMetric(p.workersExporter.wm, prometheus.GaugeValue, float64(cum))
}
type requestsExporter struct {
requestCounter *prometheus.CounterVec
requestDuration *prometheus.HistogramVec
}
func newRequestsExporter() *requestsExporter {
return &requestsExporter{
requestCounter: prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "rr_http_request_total",
Help: "Total number of handled http requests after server restart.",
},
[]string{"status"},
),
requestDuration: prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Name: "rr_http_request_duration_seconds",
Help: "HTTP request duration.",
},
[]string{"status"},
),
}
}
|