-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserver_status.go
93 lines (77 loc) · 2.14 KB
/
server_status.go
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
package main
import (
"context"
"fmt"
"github.com/flaviostutz/promcollectors"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
"github.com/tidwall/gjson"
"go.mongodb.org/mongo-driver/mongo"
"gopkg.in/mgo.v2/bson"
)
var (
hostInfo = promcollectors.NewSettableCounterVec(prometheus.Opts{
Name: "mongo_server_uptime_seconds",
Help: "Basic server info and uptime in seconds",
}, []string{
"host",
"version",
"process",
})
connections = promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "mongo_connections",
Help: "Number of connections on server",
}, []string{
"host",
"type",
})
netRequests = promcollectors.NewSettableCounterVec(prometheus.Opts{
Name: "mongo_network_requests_total",
Help: "Number of network requests processed",
}, []string{
"host",
})
opCounters = promcollectors.NewSettableCounterVec(prometheus.Opts{
Name: "mongo_opcounters_total",
Help: "Number of operations executed by op type",
}, []string{
"host",
"type",
})
)
func init() {
prometheus.MustRegister(hostInfo)
prometheus.MustRegister(netRequests)
prometheus.MustRegister(opCounters)
}
func processServerInfo(mc *mongo.Client) error {
r := mc.Database("admin").RunCommand(context.TODO(),
bson.M{"serverStatus": 1},
)
br, err := r.DecodeBytes()
if err != nil {
return err
}
result := br.String()
if getFloatValue(gjson.Get(result, "ok")) != 1.0 {
return fmt.Errorf("Couldn't execute serverStatus")
}
host := gjson.Get(result, "host").String()
version := gjson.Get(result, "version").String()
process := gjson.Get(result, "process").String()
uptime := getFloatValue(gjson.Get(result, "uptime"))
hostInfo.Set(uptime, host, version, process)
conn := gjson.Get(result, "connections")
for typ, count := range conn.Map() {
counter := getFloatValue(count)
connections.WithLabelValues(host, typ).Set(counter)
}
netReq := getFloatValue(gjson.Get(result, "network.numRequests"))
netRequests.Set(netReq, host)
opc := gjson.Get(result, "opcounters").Map()
for opname, counter := range opc {
val := getFloatValue(counter)
opCounters.Set(val, host, opname)
}
return nil
}