forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
output_redis.go
304 lines (247 loc) · 6.53 KB
/
output_redis.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
package main
import (
"encoding/json"
"errors"
"fmt"
"strings"
"time"
"github.com/garyburd/redigo/redis"
)
type RedisDataType uint16
const (
RedisListType RedisDataType = iota
RedisChannelType
)
type RedisOutputType struct {
OutputInterface
Index string
Conn redis.Conn
TopologyExpire time.Duration
ReconnectInterval time.Duration
Hostname string
Password string
Db int
DbTopology int
Timeout time.Duration
DataType RedisDataType
FlushInterval time.Duration
flush_immediatelly bool
TopologyMap map[string]string
sendingQueue chan RedisQueueMsg
connected bool
}
type RedisQueueMsg struct {
index string
msg string
}
var RedisOutput RedisOutputType
func (out *RedisOutputType) Init(config tomlMothership) error {
out.Hostname = fmt.Sprintf("%s:%d", config.Host, config.Port)
if config.Password != "" {
out.Password = config.Password
}
if config.Db != 0 {
out.Db = config.Db
}
out.DbTopology = 1
if config.Db_topology != 0 {
out.DbTopology = config.Db_topology
}
out.Timeout = 5 * time.Second
if config.Timeout != 0 {
out.Timeout = time.Duration(config.Timeout) * time.Second
}
if config.Index != "" {
out.Index = config.Index
} else {
out.Index = "packetbeat"
}
out.FlushInterval = 1000 * time.Millisecond
if config.Flush_interval != 0 {
if config.Flush_interval < 0 {
out.flush_immediatelly = true
WARN("Flushing to REDIS on each push, performance migh be affected")
} else {
out.FlushInterval = time.Duration(config.Flush_interval) * time.Millisecond
}
}
out.ReconnectInterval = time.Duration(1) * time.Second
if config.Reconnect_interval != 0 {
out.ReconnectInterval = time.Duration(config.Reconnect_interval) * time.Second
}
exp_sec := 15
if _Config.Agent.Topology_expire != 0 {
exp_sec = _Config.Agent.Topology_expire
}
out.TopologyExpire = time.Duration(exp_sec) * time.Second
switch config.DataType {
case "", "list":
out.DataType = RedisListType
case "channel":
out.DataType = RedisChannelType
default:
return errors.New("Bad Redis data type")
}
INFO("[RedisOutput] Using Redis server %s", out.Hostname)
if out.Password != "" {
INFO("[RedisOutput] Using password to connect to Redis")
}
INFO("[RedisOutput] Redis connection timeout %s", out.Timeout)
INFO("[RedisOutput] Redis reconnect interval %s", out.ReconnectInterval)
INFO("[RedisOutput] Redis flushing interval %s", out.FlushInterval)
INFO("[RedisOutput] Using index pattern %s", out.Index)
INFO("[RedisOutput] Topology expires after %s", out.TopologyExpire)
INFO("[RedisOutput] Using db %d for storing events", out.Db)
INFO("[RedisOutput] Using db %d for storing topology", out.DbTopology)
INFO("[RedisOutput] Using %d data type", out.DataType)
out.sendingQueue = make(chan RedisQueueMsg, 1000)
out.Reconnect()
go out.SendMessagesGoroutine()
return nil
}
func (out *RedisOutputType) RedisConnect(db int) (redis.Conn, error) {
conn, err := redis.DialTimeout(
"tcp",
out.Hostname,
out.Timeout, out.Timeout, out.Timeout)
if err != nil {
return nil, err
}
if len(out.Password) > 0 {
_, err = conn.Do("AUTH", out.Password)
if err != nil {
return nil, err
}
}
_, err = conn.Do("PING")
if err != nil {
return nil, err
}
_, err = conn.Do("SELECT", db)
if err != nil {
return nil, err
}
return conn, nil
}
func (out *RedisOutputType) Connect() error {
var err error
out.Conn, err = out.RedisConnect(out.Db)
if err != nil {
return err
}
out.connected = true
return nil
}
func (out *RedisOutputType) Close() {
out.Conn.Close()
}
func (out *RedisOutputType) SendMessagesGoroutine() {
var err error
flushChannel := make(<-chan time.Time)
if !out.flush_immediatelly {
flushTimer := time.NewTimer(out.FlushInterval)
flushChannel = flushTimer.C
}
for {
select {
case queueMsg := <-out.sendingQueue:
if !out.connected {
DEBUG("output_redis", "Droping pkt ...")
continue
}
DEBUG("output_redis", "Send event to redis")
command := "RPUSH"
if out.DataType == RedisChannelType {
command = "PUBLISH"
}
if !out.flush_immediatelly {
err = out.Conn.Send(command, queueMsg.index, queueMsg.msg)
} else {
_, err = out.Conn.Do(command, queueMsg.index, queueMsg.msg)
}
if err != nil {
ERR("Fail to publish event to REDIS: %s", err)
out.connected = false
go out.Reconnect()
}
case _ = <-flushChannel:
out.Conn.Flush()
_, err = out.Conn.Receive()
if err != nil {
ERR("Fail to publish event to REDIS: %s", err)
out.connected = false
go out.Reconnect()
}
}
}
}
func (out *RedisOutputType) Reconnect() {
for {
err := out.Connect()
if err != nil {
WARN("Error connecting to Redis (%s). Retrying in %s", err, out.ReconnectInterval)
time.Sleep(out.ReconnectInterval)
} else {
break
}
}
}
func (out *RedisOutputType) GetNameByIP(ip string) string {
name, exists := out.TopologyMap[ip]
if !exists {
return ""
}
return name
}
func (out *RedisOutputType) PublishIPs(name string, localAddrs []string) error {
DEBUG("output_redis", "[%s] Publish the IPs %s", name, localAddrs)
// connect to db
conn, err := out.RedisConnect(out.DbTopology)
if err != nil {
return err
}
defer conn.Close()
_, err = conn.Do("HSET", name, "ipaddrs", strings.Join(localAddrs, ","))
if err != nil {
ERR("[%s] Fail to set the IP addresses: %s", name, err)
return err
}
_, err = conn.Do("EXPIRE", name, int(out.TopologyExpire.Seconds()))
if err != nil {
ERR("[%s] Fail to set the expiration time: %s", name, err)
return err
}
out.UpdateLocalTopologyMap(conn)
return nil
}
func (out *RedisOutputType) UpdateLocalTopologyMap(conn redis.Conn) {
TopologyMapTmp := make(map[string]string)
hostnames, err := redis.Strings(conn.Do("KEYS", "*"))
if err != nil {
ERR("Fail to get the all agents from the topology map %s", err)
return
}
for _, hostname := range hostnames {
res, err := redis.String(conn.Do("HGET", hostname, "ipaddrs"))
if err != nil {
ERR("[%s] Fail to get the IPs: %s", hostname, err)
} else {
ipaddrs := strings.Split(res, ",")
for _, addr := range ipaddrs {
TopologyMapTmp[addr] = hostname
}
}
}
out.TopologyMap = TopologyMapTmp
DEBUG("output_redis", "Topology %s", TopologyMapTmp)
}
func (out *RedisOutputType) PublishEvent(event *Event) error {
json_event, err := json.Marshal(event)
if err != nil {
ERR("Fail to convert the event to JSON: %s", err)
return err
}
out.sendingQueue <- RedisQueueMsg{index: out.Index, msg: string(json_event)}
DEBUG("output_redis", "Publish event")
return nil
}