summaryrefslogtreecommitdiff
path: root/plugins/metrics/tests/plugin1.go
blob: b48c415d25c270b0ab3ed116207389cd5f39350b (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
package tests

import (
	"github.com/prometheus/client_golang/prometheus"
	"github.com/spiral/roadrunner/v2/plugins/config"
)

// Gauge //////////////
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 {
	collector := prometheus.NewGauge(prometheus.GaugeOpts{
		Name: "my_gauge",
		Help: "My gauge value",
	})

	collector.Set(100)

	collector2 := prometheus.NewGauge(prometheus.GaugeOpts{
		Name: "my_gauge2",
		Help: "My gauge2 value",
	})

	collector2.Set(100)
	return []prometheus.Collector{collector, collector2}
}