forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mntr.go
64 lines (55 loc) · 1.68 KB
/
mntr.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
/*
Package mntr fetches metrics from ZooKeeper by using the mntr command which was
added to ZooKeeper in version 3.4.0.
See the mntr command documentation at
https://zookeeper.apache.org/doc/trunk/zookeeperAdmin.html
ZooKeeper mntr Command Output
$ echo mntr | nc localhost 2185
zk_version 3.4.8--1, built on 02/06/2016 03:18 GMT
zk_avg_latency 0
zk_max_latency 0
zk_min_latency 0
zk_packets_received 10
zk_packets_sent 9
zk_num_alive_connections 1
zk_outstanding_requests 0
zk_server_state standalone
zk_znode_count 4
zk_watch_count 0
zk_ephemerals_count 0
zk_approximate_data_size 27
zk_open_file_descriptor_count 25
zk_max_file_descriptor_count 1048576
*/
package mntr
import (
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/mb/parse"
"github.com/elastic/beats/metricbeat/module/zookeeper"
"github.com/pkg/errors"
)
func init() {
if err := mb.Registry.AddMetricSet("zookeeper", "mntr", New, parse.PassThruHostParser); err != nil {
panic(err)
}
}
// MetricSet for fetching ZooKeeper health metrics.
type MetricSet struct {
mb.BaseMetricSet
}
// New creates new instance of MetricSet.
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
return &MetricSet{
BaseMetricSet: base,
}, nil
}
// Fetch fetches metrics from ZooKeeper by making a tcp connection to the
// command port and sending the "mntr" command and parsing the output.
func (m *MetricSet) Fetch() (common.MapStr, error) {
outputReader, err := zookeeper.RunCommand("mntr", m.Host(), m.Module().Config().Timeout)
if err != nil {
return nil, errors.Wrap(err, "mntr command failed")
}
return eventMapping(outputReader), nil
}