forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.go
55 lines (44 loc) · 1.04 KB
/
node.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
package node
import (
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/cfgwarn"
"github.com/elastic/beats/metricbeat/helper"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/mb/parse"
)
const (
defaultScheme = "http"
defaultPath = "/api/nodes"
)
var (
hostParser = parse.URLHostParserBuilder{
DefaultScheme: defaultScheme,
DefaultPath: defaultPath,
}.Build()
)
func init() {
if err := mb.Registry.AddMetricSet("rabbitmq", "node", New, hostParser); err != nil {
panic(err)
}
}
type MetricSet struct {
mb.BaseMetricSet
*helper.HTTP
}
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
cfgwarn.Experimental("The rabbitmq node metricset is experimental")
http := helper.NewHTTP(base)
http.SetHeader("Accept", "application/json")
return &MetricSet{
base,
http,
}, nil
}
func (m *MetricSet) Fetch() ([]common.MapStr, error) {
content, err := m.HTTP.FetchContent()
if err != nil {
return nil, err
}
events, _ := eventsMapping(content)
return events, nil
}