forked from open-falcon/falcon-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
combiner.go
279 lines (235 loc) · 5.96 KB
/
combiner.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
package cron
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/garyburd/redigo/redis"
"github.com/open-falcon/falcon-plus/modules/alarm/api"
"github.com/open-falcon/falcon-plus/modules/alarm/g"
"github.com/open-falcon/falcon-plus/modules/alarm/redi"
"strings"
"time"
)
func CombineSms() {
for {
// 每分钟读取处理一次
time.Sleep(time.Minute)
combineSms()
}
}
func CombineMail() {
for {
// 每分钟读取处理一次
time.Sleep(time.Minute)
combineMail()
}
}
func CombineIM() {
for {
// 每分钟读取处理一次
time.Sleep(time.Minute)
combineIM()
}
}
func combineMail() {
dtos := popAllMailDto()
count := len(dtos)
if count == 0 {
return
}
dtoMap := make(map[string][]*MailDto)
for i := 0; i < count; i++ {
key := fmt.Sprintf("%d%s%s%s", dtos[i].Priority, dtos[i].Status, dtos[i].Email, dtos[i].Metric)
if _, ok := dtoMap[key]; ok {
dtoMap[key] = append(dtoMap[key], dtos[i])
} else {
dtoMap[key] = []*MailDto{dtos[i]}
}
}
// 不要在这处理,继续写回redis,否则重启alarm很容易丢数据
for _, arr := range dtoMap {
size := len(arr)
if size == 1 {
redi.WriteMail([]string{arr[0].Email}, arr[0].Subject, arr[0].Content)
continue
}
subject := fmt.Sprintf("[P%d][%s] %d %s", arr[0].Priority, arr[0].Status, size, arr[0].Metric)
contentArr := make([]string, size)
for i := 0; i < size; i++ {
contentArr[i] = arr[i].Content
}
content := strings.Join(contentArr, "\r\n")
log.Debugf("combined mail subject:%s, content:%s", subject, content)
redi.WriteMail([]string{arr[0].Email}, subject, content)
}
}
func combineIM() {
dtos := popAllImDto()
count := len(dtos)
if count == 0 {
return
}
dtoMap := make(map[string][]*ImDto)
for i := 0; i < count; i++ {
key := fmt.Sprintf("%d%s%s%s", dtos[i].Priority, dtos[i].Status, dtos[i].IM, dtos[i].Metric)
if _, ok := dtoMap[key]; ok {
dtoMap[key] = append(dtoMap[key], dtos[i])
} else {
dtoMap[key] = []*ImDto{dtos[i]}
}
}
for _, arr := range dtoMap {
size := len(arr)
if size == 1 {
redi.WriteIM([]string{arr[0].IM}, arr[0].Content)
continue
}
// 把多个im内容写入数据库,只给用户提供一个链接
contentArr := make([]string, size)
for i := 0; i < size; i++ {
contentArr[i] = arr[i].Content
}
content := strings.Join(contentArr, ",,")
first := arr[0].Content
t := strings.Split(first, "][")
eg := ""
if len(t) >= 3 {
eg = t[2]
}
path, err := api.LinkToSMS(content)
chat := ""
if err != nil || path == "" {
chat = fmt.Sprintf("[P%d][%s] %d %s. e.g. %s. detail in email", arr[0].Priority, arr[0].Status, size, arr[0].Metric, eg)
log.Error("create short link fail", err)
} else {
chat = fmt.Sprintf("[P%d][%s] %d %s e.g. %s %s/portal/links/%s ",
arr[0].Priority, arr[0].Status, size, arr[0].Metric, eg, g.Config().Api.Dashboard, path)
log.Debugf("combined im is:%s", chat)
}
redi.WriteIM([]string{arr[0].IM}, chat)
}
}
func combineSms() {
dtos := popAllSmsDto()
count := len(dtos)
if count == 0 {
return
}
dtoMap := make(map[string][]*SmsDto)
for i := 0; i < count; i++ {
key := fmt.Sprintf("%d%s%s%s", dtos[i].Priority, dtos[i].Status, dtos[i].Phone, dtos[i].Metric)
if _, ok := dtoMap[key]; ok {
dtoMap[key] = append(dtoMap[key], dtos[i])
} else {
dtoMap[key] = []*SmsDto{dtos[i]}
}
}
for _, arr := range dtoMap {
size := len(arr)
if size == 1 {
redi.WriteSms([]string{arr[0].Phone}, arr[0].Content)
continue
}
// 把多个sms内容写入数据库,只给用户提供一个链接
contentArr := make([]string, size)
for i := 0; i < size; i++ {
contentArr[i] = arr[i].Content
}
content := strings.Join(contentArr, ",,")
first := arr[0].Content
t := strings.Split(first, "][")
eg := ""
if len(t) >= 3 {
eg = t[2]
}
path, err := api.LinkToSMS(content)
sms := ""
if err != nil || path == "" {
sms = fmt.Sprintf("[P%d][%s] %d %s. e.g. %s. detail in email", arr[0].Priority, arr[0].Status, size, arr[0].Metric, eg)
log.Error("get short link fail", err)
} else {
sms = fmt.Sprintf("[P%d][%s] %d %s e.g. %s %s/portal/links/%s ",
arr[0].Priority, arr[0].Status, size, arr[0].Metric, eg, g.Config().Api.Dashboard, path)
log.Debugf("combined sms is:%s", sms)
}
redi.WriteSms([]string{arr[0].Phone}, sms)
}
}
func popAllSmsDto() []*SmsDto {
ret := []*SmsDto{}
queue := g.Config().Redis.UserSmsQueue
rc := g.RedisConnPool.Get()
defer rc.Close()
for {
reply, err := redis.String(rc.Do("RPOP", queue))
if err != nil {
if err != redis.ErrNil {
log.Error("get SmsDto fail", err)
}
break
}
if reply == "" || reply == "nil" {
continue
}
var smsDto SmsDto
err = json.Unmarshal([]byte(reply), &smsDto)
if err != nil {
log.Error("json unmarshal SmsDto: %s fail: %v", reply, err)
continue
}
ret = append(ret, &smsDto)
}
return ret
}
func popAllMailDto() []*MailDto {
ret := []*MailDto{}
queue := g.Config().Redis.UserMailQueue
rc := g.RedisConnPool.Get()
defer rc.Close()
for {
reply, err := redis.String(rc.Do("RPOP", queue))
if err != nil {
if err != redis.ErrNil {
log.Error("get MailDto fail", err)
}
break
}
if reply == "" || reply == "nil" {
continue
}
var mailDto MailDto
err = json.Unmarshal([]byte(reply), &mailDto)
if err != nil {
log.Errorf("json unmarshal MailDto: %s fail: %v", reply, err)
continue
}
ret = append(ret, &mailDto)
}
return ret
}
func popAllImDto() []*ImDto {
ret := []*ImDto{}
queue := g.Config().Redis.UserIMQueue
rc := g.RedisConnPool.Get()
defer rc.Close()
for {
reply, err := redis.String(rc.Do("RPOP", queue))
if err != nil {
if err != redis.ErrNil {
log.Error("get ImDto fail", err)
}
break
}
if reply == "" || reply == "nil" {
continue
}
var imDto ImDto
err = json.Unmarshal([]byte(reply), &imDto)
if err != nil {
log.Error("json unmarshal imDto: %s fail: %v", reply, err)
continue
}
ret = append(ret, &imDto)
}
return ret
}