forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_stats.go
53 lines (45 loc) · 1.33 KB
/
node_stats.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
package node_stats
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"
)
// init registers the MetricSet with the central registry.
// The New method will be called after the setup of the module and before starting to fetch data
func init() {
if err := mb.Registry.AddMetricSet("elasticsearch", "node_stats", New, hostParser); err != nil {
panic(err)
}
}
var (
hostParser = parse.URLHostParserBuilder{
DefaultScheme: "http",
PathConfigKey: "path",
// Get the stats from the local node
DefaultPath: "_nodes/_local/stats",
}.Build()
)
// MetricSet type defines all fields of the MetricSet
type MetricSet struct {
mb.BaseMetricSet
http *helper.HTTP
}
// New create a new instance of the MetricSet
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
cfgwarn.Beta("The elasticsearch node_stats metricset is beta")
return &MetricSet{
base,
helper.NewHTTP(base),
}, nil
}
// Fetch methods implements the data gathering and data conversion to the right format
func (m *MetricSet) Fetch() ([]common.MapStr, error) {
content, err := m.http.FetchContent()
if err != nil {
return nil, err
}
events, _ := eventsMapping(content)
return events, nil
}