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
|
package limit
import (
"github.com/prometheus/client_golang/prometheus"
"github.com/spf13/cobra"
rrlimit "github.com/spiral/roadrunner/service/limit"
"github.com/spiral/roadrunner/service/metrics"
rr "github.com/spiral/roadrunner/service/reload/cmd/rr/cmd"
)
func init() {
cobra.OnInitialize(func() {
svc, _ := rr.Container.Get(metrics.ID)
mtr, ok := svc.(*metrics.Service)
if !ok || !mtr.Enabled() {
return
}
ht, _ := rr.Container.Get(rrlimit.ID)
if ht, ok := ht.(*rrlimit.Service); ok {
collector := newCollector()
// register metrics
mtr.MustRegister(collector.maxMemory)
// collect events
ht.AddListener(collector.listener)
}
})
}
// listener provide debug callback for system events. With colors!
type metricCollector struct {
maxMemory prometheus.Counter
maxExecutionTime prometheus.Counter
}
func newCollector() *metricCollector {
return &metricCollector{
maxMemory: prometheus.NewCounter(
prometheus.CounterOpts{
Name: "rr_limit_max_memory",
Help: "Total number of workers that was killed because they reached max memory limit.",
},
),
maxExecutionTime: prometheus.NewCounter(
prometheus.CounterOpts{
Name: "rr_limit_max_execution_time",
Help: "Total number of workers that was killed because they reached max execution time limit.",
},
),
}
}
// listener listens to http events and generates nice looking output.
func (c *metricCollector) listener(event int, ctx interface{}) {
switch event {
case rrlimit.EventMaxMemory:
c.maxMemory.Inc()
case rrlimit.EventExecTTL:
c.maxExecutionTime.Inc()
}
}
|