2020-02-17 12:17:02 +00:00
|
|
|
package server
|
2019-10-29 17:51:17 +00:00
|
|
|
|
2020-03-12 17:36:36 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
2019-10-29 17:51:17 +00:00
|
|
|
|
|
|
|
// Metrics used in monitoring service.
|
2020-03-25 12:19:12 +00:00
|
|
|
var rpcCounter = map[string]prometheus.Counter{}
|
2019-10-29 17:51:17 +00:00
|
|
|
|
2020-03-12 17:36:36 +00:00
|
|
|
func incCounter(name string) {
|
|
|
|
ctr, ok := rpcCounter[name]
|
|
|
|
if ok {
|
|
|
|
ctr.Inc()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-29 17:51:17 +00:00
|
|
|
func init() {
|
2020-03-25 12:19:12 +00:00
|
|
|
for call := range rpcHandlers {
|
2020-03-12 17:36:36 +00:00
|
|
|
ctr := prometheus.NewCounter(
|
|
|
|
prometheus.CounterOpts{
|
2020-03-25 12:19:12 +00:00
|
|
|
Help: fmt.Sprintf("Number of calls to %s rpc endpoint", call),
|
|
|
|
Name: fmt.Sprintf("%s_called", call),
|
2020-03-12 17:36:36 +00:00
|
|
|
Namespace: "neogo",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
prometheus.MustRegister(ctr)
|
2020-03-25 12:19:12 +00:00
|
|
|
rpcCounter[call] = ctr
|
2020-03-12 17:36:36 +00:00
|
|
|
}
|
2019-10-29 17:51:17 +00:00
|
|
|
}
|