-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.go
More file actions
199 lines (166 loc) · 4.48 KB
/
Copy pathplugin.go
File metadata and controls
199 lines (166 loc) · 4.48 KB
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
package metrics
import (
"context"
"errors"
"log/slog"
"net/http"
"sync"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/collectors"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/roadrunner-server/endure/v2/dep"
rrerrors "github.com/roadrunner-server/errors"
)
const (
// PluginName declares plugin name.
PluginName = "metrics"
// maxHeaderSize declares max header size for prometheus server
maxHeaderSize = 1 << 20 // 1MB
)
// Plugin to manage application metrics using Prometheus.
type Plugin struct {
cfg *Config
log *slog.Logger
mu sync.Mutex // all receivers are pointers
http *http.Server
collectors sync.Map // name -> collector
registry *prometheus.Registry
// prometheus Collectors
statProviders []StatProvider
}
// collector used to deduplicate registration
type collector struct {
col prometheus.Collector
registered bool
}
type Configurer interface {
// UnmarshalKey takes a single key and unmarshal it into a Struct.
UnmarshalKey(name string, out any) error
// Has checks if config section exists.
Has(name string) bool
}
type Logger interface {
NamedLogger(name string) *slog.Logger
}
// StatProvider used to collect all plugins which might report to the prometheus
type StatProvider interface {
MetricsCollector() []prometheus.Collector
}
// Init service.
func (p *Plugin) Init(cfg Configurer, log Logger) error {
const op = rrerrors.Op("metrics_plugin_init")
if !cfg.Has(PluginName) {
return rrerrors.E(op, rrerrors.Disabled)
}
err := cfg.UnmarshalKey(PluginName, &p.cfg)
if err != nil {
return rrerrors.E(op, rrerrors.Disabled, err)
}
p.cfg.InitDefaults()
p.log = log.NamedLogger(PluginName)
p.registry = prometheus.NewRegistry()
// Default
err = p.registry.Register(collectors.NewProcessCollector(collectors.ProcessCollectorOpts{}))
if err != nil {
return rrerrors.E(op, err)
}
// Default
err = p.registry.Register(collectors.NewGoCollector())
if err != nil {
return rrerrors.E(op, err)
}
cl, err := p.cfg.getCollectors()
if err != nil {
return rrerrors.E(op, err)
}
// Register invocation will be later in the Serve method
for k, v := range cl {
p.collectors.Store(k, v)
}
return nil
}
// Register new prometheus collector.
func (p *Plugin) Register(c prometheus.Collector) error {
return p.registry.Register(c)
}
// Serve prometheus metrics service.
func (p *Plugin) Serve() chan error {
errCh := make(chan error, 1)
p.mu.Lock()
defer p.mu.Unlock()
// register Collected stat providers
for _, sp := range p.statProviders {
for _, c := range sp.MetricsCollector() {
err := p.registry.Register(c)
if err != nil {
errCh <- err
return errCh
}
}
}
// range over the collectors registered via configuration
p.collectors.Range(func(_, value any) bool {
// key - name
// value - prometheus.Collector
c := value.(*collector)
// do not register yet registered collectors
if c.registered {
p.log.Debug("prometheus collector was already registered, skipping")
return true
}
if err := p.registry.Register(c.col); err != nil {
errCh <- err
return false
}
return true
})
p.http = &http.Server{
Addr: p.cfg.Address,
Handler: promhttp.HandlerFor(p.registry, promhttp.HandlerOpts{}),
IdleTimeout: time.Hour,
ReadTimeout: time.Minute * 2,
MaxHeaderBytes: maxHeaderSize,
ReadHeaderTimeout: time.Minute * 2,
WriteTimeout: time.Minute * 2,
}
go func() {
err := p.http.ListenAndServe()
if err != nil && !errors.Is(err, http.ErrServerClosed) {
errCh <- err
}
}()
return errCh
}
func (p *Plugin) Weight() uint {
return 1
}
// Stop prometheus metrics service.
func (p *Plugin) Stop(ctx context.Context) error {
p.mu.Lock()
defer p.mu.Unlock()
if p.http != nil {
err := p.http.Shutdown(ctx)
if err != nil {
return rrerrors.Errorf("error shutting down the metrics server: error %v", err)
}
}
return nil
}
// Collects used to collect all plugins that implement metrics.StatProvider interface (and Named)
func (p *Plugin) Collects() []*dep.In {
return []*dep.In{
dep.Fits(func(pp any) {
sp := pp.(StatProvider)
p.statProviders = append(p.statProviders, sp)
}, (*StatProvider)(nil)),
}
}
// Name returns user-friendly plugin name
func (p *Plugin) Name() string {
return PluginName
}
// RPC returns the net/rpc service for the metrics plugin, served over goridge.
func (p *Plugin) RPC() any {
return &rpc{p: p, log: p.log}
}