blob: fdf10e5467a50e235776225b388dd9aa800aa63a (
plain)
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
|
package tests
import (
"fmt"
"github.com/prometheus/client_golang/prometheus"
"github.com/spiral/roadrunner/v2/plugins/config"
)
type Plugin1 struct {
config config.Configurer
}
func (p1 *Plugin1) Init(cfg config.Configurer) error {
p1.config = cfg
return nil
}
func (p1 *Plugin1) Serve() chan error {
errCh := make(chan error, 1)
return errCh
}
func (p1 *Plugin1) Stop() error {
return nil
}
func (p1 *Plugin1) Name() string {
return "metrics_test.plugin1"
}
func (p1 *Plugin1) MetricsCollector() prometheus.Collector {
var (
cpuTemp = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "cpu_temperature_celsius",
Help: "Current temperature of the CPU.",
})
)
return cpuTemp
}
type PluginRpc struct {
srv *Plugin1
}
func (r *PluginRpc) Hello(in string, out *string) error {
*out = fmt.Sprintf("Hello, username: %s", in)
return nil
}
|