forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publisher.go
56 lines (47 loc) · 1.26 KB
/
publisher.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
package publisher
import (
"errors"
"expvar"
"github.com/elastic/beats/filebeat/input"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
"github.com/elastic/beats/libbeat/publisher"
)
var (
eventsSent = expvar.NewInt("publish.events")
)
// LogPublisher provides functionality to start and stop a publisher worker.
type LogPublisher interface {
Start()
Stop()
}
// SuccessLogger is used to report successfully published events.
type SuccessLogger interface {
// Published will be run after events have been acknowledged by the outputs.
Published(events []*input.Event) bool
}
func New(
async bool,
in chan []*input.Event,
out SuccessLogger,
pub publisher.Publisher,
) LogPublisher {
if async {
logp.Warn("Using publish_async is experimental!")
return newAsyncLogPublisher(in, out, pub)
}
return newSyncLogPublisher(in, out, pub)
}
var (
sigPublisherStop = errors.New("publisher was stopped")
)
// getDataEvents returns all events which contain data (not only state updates)
func getDataEvents(events []*input.Event) []common.MapStr {
dataEvents := make([]common.MapStr, 0, len(events))
for _, event := range events {
if event.HasData() {
dataEvents = append(dataEvents, event.ToMapStr())
}
}
return dataEvents
}