forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
metricbeat.go
84 lines (70 loc) · 2.29 KB
/
metricbeat.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
package beater
import (
"sync"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
"github.com/elastic/beats/libbeat/publisher"
"github.com/elastic/beats/metricbeat/mb"
"github.com/pkg/errors"
)
// Metricbeat implements the Beater interface for metricbeat.
type Metricbeat struct {
done chan struct{} // Channel used to initiate shutdown.
modules []*ModuleWrapper // Active list of modules.
client publisher.Client // Publisher client.
}
// New creates and returns a new Metricbeat instance.
func New(b *beat.Beat, rawConfig *common.Config) (beat.Beater, error) {
// List all registered modules and metricsets.
logp.Info("%s", mb.Registry.String())
config := Config{}
err := rawConfig.Unpack(&config)
if err != nil {
return nil, errors.Wrap(err, "error reading configuration file")
}
modules, err := NewModuleWrappers(config.Modules, mb.Registry)
if err != nil {
return nil, err
}
mb := &Metricbeat{
done: make(chan struct{}),
modules: modules,
}
return mb, nil
}
// Run starts the workers for Metricbeat and blocks until Stop is called
// and the workers complete. Each host associated with a MetricSet is given its
// own goroutine for fetching data. The ensures that each host is isolated so
// that a single unresponsive host cannot inadvertently block other hosts
// within the same Module and MetricSet from collection.
func (bt *Metricbeat) Run(b *beat.Beat) error {
bt.client = b.Publisher.Connect()
// Start each module.
var cs []<-chan common.MapStr
for _, mw := range bt.modules {
c := mw.Start(bt.done)
cs = append(cs, c)
}
// Consume data from all modules and publish it. When the modules stop they
// close their output channels. When all the modules' channels are closed
// PublishChannels exit.
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
PublishChannels(bt.client, cs...)
}()
// Wait for PublishChannels to stop publishing.
wg.Wait()
return nil
}
// Stop signals to Metricbeat that it should stop. It closes the "done" channel
// and closes the publisher client associated with each Module.
//
// Stop should only be called a single time. Calling it more than once may
// result in undefined behavior.
func (bt *Metricbeat) Stop() {
bt.client.Close()
close(bt.done)
}