forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput_redis.go
225 lines (179 loc) · 5.63 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
package main
import (
"encoding/json"
"fmt"
"github.com/go-redis/redis"
"strings"
"time"
)
type RedisOutputType struct {
OutputInterface
Index string
Client *redis.Client
TopologyExpire time.Duration
ReconnectInterval time.Duration
Hostname string
Password string
Db int
DbTopology int
Timeout time.Duration
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 = time.Duration(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.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
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] 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)
out.sendingQueue = make(chan RedisQueueMsg, 1000)
out.Reconnect()
go out.SendMessagesGoroutine()
return nil
}
func (out *RedisOutputType) Connect() error {
client := redis.NewTCPClient(&redis.Options{
Addr: out.Hostname,
Password: out.Password,
DB: int64(out.Db),
DialTimeout: out.Timeout,
})
_, err := client.Ping().Result()
if err != nil {
ERR("Failed connection to Redis. ping returns an error: %s", err)
return err
}
out.Client = client
out.connected = true
return nil
}
func (out *RedisOutputType) Close() {
out.Client.Close()
}
func (out *RedisOutputType) SendMessagesGoroutine() {
for queueMsg := range out.sendingQueue {
if !out.connected {
DEBUG("output_redis", "Droping pkt ...")
continue
}
DEBUG("output_redis", "Send event to redis")
_, err := out.Client.RPush(queueMsg.index, queueMsg.msg).Result()
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
client := redis.NewTCPClient(&redis.Options{
Addr: out.Hostname,
Password: out.Password,
DialTimeout: out.Timeout,
})
client.Select(int64(out.DbTopology))
defer client.Close()
_, err := client.HSet(name, "ipaddrs", strings.Join(localAddrs, ",")).Result()
if err != nil {
ERR("[%s] Fail to set the IP addresses: %s", name, err)
return err
}
_, err = client.Expire(name, out.TopologyExpire).Result()
if err != nil {
ERR("[%s] Fail to set the expiration time: %s", name, err)
return err
}
out.UpdateLocalTopologyMap(client)
return nil
}
func (out *RedisOutputType) UpdateLocalTopologyMap(client *redis.Client) {
TopologyMapTmp := make(map[string]string)
res, err := client.Keys("*").Result()
if err != nil {
ERR("Fail to get the all agents from the topology map %s", err)
return
}
for _, hostname := range res {
res, err := client.HGet(hostname, "ipaddrs").Result()
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
}