-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
401 lines (360 loc) · 9.13 KB
/
main.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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
package main
import (
"bufio"
"errors"
"fmt"
"io"
"log"
"os"
"regexp"
"strconv"
"strings"
"sync"
"time"
docker "github.com/fsouza/go-dockerclient"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api"
)
const (
defaultPumpName = "pump"
pumpEventStatusStartName = "start"
pumpEventStatusRestartName = "restart"
pumpEventStatusRenameName = "rename"
pumpEventStatusDieName = "die"
trueString = "true"
pumpMaxIDLen = 12
)
var (
Bot *tgbotapi.BotAPI
allowTTY bool
matchre *regexp.Regexp
sendTg bool
tgChatID int64
tgToken string
buildTime string
)
func setAllowTTY() {
if t := GetEnvDefault("ALLOW_TTY", ""); t == trueString {
allowTTY = true
}
debug("setting allowTTY to:", allowTTY)
}
type LogsPump struct {
mu sync.Mutex
pumps map[string]*containerPump
client *docker.Client
}
func normalID(id string) string {
if len(id) > pumpMaxIDLen {
return id[:pumpMaxIDLen]
}
return id
}
func (p *LogsPump) Setup() error {
var err error
p.client, err = docker.NewClientFromEnv()
return err
}
func debug(v ...interface{}) {
if os.Getenv("DEBUG") != "" {
log.Println(v...)
}
}
func getInactivityTimeoutFromEnv() time.Duration {
inactivityTimeout, err := time.ParseDuration(GetEnvDefault("INACTIVITY_TIMEOUT", "0"))
assert(err, "Couldn't parse env var INACTIVITY_TIMEOUT. See https://golang.org/pkg/time/#ParseDuration for valid format.")
return inactivityTimeout
}
func assert(err error, context string) {
if err != nil {
log.Fatal(context+": ", err)
}
}
func (p *LogsPump) rename(event *docker.APIEvents) {
p.mu.Lock()
defer p.mu.Unlock()
container, _ := p.client.InspectContainerWithOptions(docker.InspectContainerOptions{ID: event.ID})
pump, ok := p.pumps[normalID(event.ID)]
if !ok {
debug("pump.rename(): ignore: pump not found, state:", container.State.StateString())
return
}
pump.container.Name = container.Name
}
func backlog() bool {
return os.Getenv("BACKLOG") == trueString
}
// Run executes the pump
func (p *LogsPump) Run() error {
inactivityTimeout := getInactivityTimeoutFromEnv()
debug("pump.Run(): using inactivity timeout: ", inactivityTimeout)
containers, err := p.client.ListContainers(docker.ListContainersOptions{})
if err != nil {
return err
}
for idx := range containers {
p.pumpLogs(&docker.APIEvents{
ID: normalID(containers[idx].ID),
Status: pumpEventStatusStartName,
}, backlog(), inactivityTimeout)
}
events := make(chan *docker.APIEvents)
err = p.client.AddEventListener(events)
if err != nil {
return err
}
for event := range events {
debug("pump.Run() event:", normalID(event.ID), event.Status)
switch event.Status {
case pumpEventStatusStartName, pumpEventStatusRestartName:
go p.pumpLogs(event, backlog(), inactivityTimeout)
case pumpEventStatusRenameName:
go p.rename(event)
case pumpEventStatusDieName:
go p.reportDead(event)
}
}
return errors.New("docker event stream closed")
}
func logDriverSupported(container *docker.Container) bool {
switch container.HostConfig.LogConfig.Type {
case "json-file", "journald", "db":
return true
default:
return false
}
}
func ignoreContainer(container *docker.Container) bool {
if strings.Contains(container.Name, "teleglogger") {
debug("ignoreContainer(): ignore: container name contains 'teleglogger'")
return true
}
return false
}
func ignoreContainerTTY(container *docker.Container) bool {
if container.Config.Tty && !allowTTY {
return true
}
return false
}
func GetEnv(name string) string {
if val := os.Getenv(name); val != "" {
return val
}
panic(fmt.Sprintf("Environment variable %s is not set", name))
}
func GetEnvDefault(name, dfault string) string {
if val := os.Getenv(name); val != "" {
return val
}
return dfault
}
func (p *LogsPump) reportDead(event *docker.APIEvents) {
log.Println("reportDead():", event.ID)
id := normalID(event.ID)
c, err := p.client.InspectContainerWithOptions(docker.InspectContainerOptions{ID: id})
if err != nil {
log.Println("reportDead(): error inspecting container:", err)
}
msg := fmt.Sprintf("%s %s died", c.Name, c.ID[:4])
tgString(msg)
}
func (p *LogsPump) pumpLogs(event *docker.APIEvents, backlog bool, inactivityTimeout time.Duration) { //nolint:gocyclo
id := normalID(event.ID)
log.Println("pump.pumpLogs(): start:", id)
container, err := p.client.InspectContainerWithOptions(docker.InspectContainerOptions{ID: id})
assert(err, defaultPumpName)
if ignoreContainerTTY(container) {
debug("pump.pumpLogs():", id, "ignored: tty enabled")
return
}
if ignoreContainer(container) {
debug("pump.pumpLogs():", id, "ignored: environ ignore")
return
}
if !logDriverSupported(container) {
debug("pump.pumpLogs():", id, "ignored: log driver not supported")
return
}
var tail = GetEnvDefault("TAIL", "all")
var sinceTime time.Time
if backlog {
sinceTime = time.Unix(0, 0)
} else {
sinceTime = time.Now()
}
p.mu.Lock()
if _, exists := p.pumps[id]; exists {
p.mu.Unlock()
debug("pump.pumpLogs():", id, "pump exists")
return
}
// RawTerminal with container Tty=false injects binary headers into
// the log stream that show up as garbage unicode characters
rawTerminal := false
if allowTTY && container.Config.Tty {
rawTerminal = true
}
outrd, outwr := io.Pipe()
errrd, errwr := io.Pipe()
p.pumps[id] = newContainerPump(container, outrd, errrd)
p.mu.Unlock()
go func() {
for {
debug("pump.pumpLogs():", id, "started, tail:", tail)
err := p.client.Logs(docker.LogsOptions{
Container: id,
OutputStream: outwr,
ErrorStream: errwr,
Stdout: true,
Stderr: true,
Follow: true,
Tail: tail,
Since: sinceTime.Unix(),
InactivityTimeout: inactivityTimeout,
RawTerminal: rawTerminal,
})
if err != nil {
debug("pump.pumpLogs():", id, "stopped with error:", err)
} else {
debug("pump.pumpLogs():", id, "stopped")
}
sinceTime = time.Now()
if err == docker.ErrInactivityTimeout {
sinceTime = sinceTime.Add(-inactivityTimeout)
}
container, err := p.client.InspectContainerWithOptions(docker.InspectContainerOptions{ID: id})
if err != nil {
_, four04 := err.(*docker.NoSuchContainer)
if !four04 {
assert(err, defaultPumpName)
}
} else if container.State.Running {
continue
}
debug("pump.pumpLogs():", id, "dead")
outwr.Close()
errwr.Close()
p.mu.Lock()
delete(p.pumps, id)
p.mu.Unlock()
return
}
}()
}
type Message struct {
Container *docker.Container
Source string
Data string
Time time.Time
}
type containerPump struct {
container *docker.Container
}
func newContainerPump(container *docker.Container, stdout, stderr io.Reader) *containerPump {
cp := &containerPump{
container: container,
}
pump := func(source string, input io.Reader) {
buf := bufio.NewReader(input)
for {
line, err := buf.ReadString('\n')
if err != nil {
if err != io.EOF {
debug("pump.newContainerPump():", normalID(container.ID), source+":", err)
}
return
}
cp.send(&Message{
Data: strings.TrimSuffix(line, "\n"),
Container: container,
Time: time.Now(),
Source: source,
})
}
}
go pump("stdout", stdout)
go pump("stderr", stderr)
return cp
}
func (cp *containerPump) send(msg *Message) {
if matchre.Match([]byte(msg.Data)) {
debug("YES msg match pump.send():", normalID(cp.container.ID[:4]), msg.Source+":", msg.Data)
err := tgMessage(msg)
if err != nil {
log.Println("TG send failed", err.Error())
}
} else {
debug("NOT msg match pump.send():", normalID(cp.container.ID[:4]), msg.Source+":", msg.Data)
}
}
func main() {
log.Println("built", buildTime)
etg := GetEnv("TG")
if (etg != "") && (etg != "0") {
sendTg = true
tgChatIDString := GetEnv("TG_CHAT")
var err error
tgChatID, err = strconv.ParseInt(tgChatIDString, 10, 64)
if err != nil {
log.Fatal(err)
}
tgToken = GetEnv("TG_TOKEN")
botInit()
}
var err error
matchre, err = regexp.Compile(GetEnvDefault("MATCHRE", `(?i).*error.*`))
if err != nil {
log.Fatal(err)
}
setAllowTTY()
p := &LogsPump{
pumps: make(map[string]*containerPump),
}
err = p.Setup()
if err != nil {
log.Fatal(err)
}
err = p.Run()
if err != nil {
log.Fatal(err)
}
}
func botInit() error {
var err error
Bot, err = tgbotapi.NewBotAPI(tgToken)
if err != nil {
return err
}
return nil
}
func tgString(msg string) error {
if !sendTg {
debug("NOT sending tgString():", msg)
return nil
}
log.Println("Sending tgString():", msg)
if Bot != nil {
ts := time.Now().Format("Mon 02-Jan 15:04")
hea := fmt.Sprintf("%s, %s", ts, msg)
nm := tgbotapi.NewMessage(tgChatID, hea)
_, err := Bot.Send(nm)
return err
}
return nil
}
func tgMessage(m *Message) error {
msg := fmt.Sprintf("%s %s %s %s", m.Container.Name, m.Container.ID[:4], m.Source, m.Data)
if !sendTg {
debug("NOT sending tgMessage():", msg)
return nil
}
log.Println("Sending tgMessage():", msg)
if Bot != nil {
ts := time.Now().Format("Mon 02-Jan 15:04")
hea := fmt.Sprintf("%s, %s", ts, msg)
nm := tgbotapi.NewMessage(tgChatID, hea)
_, err := Bot.Send(nm)
return err
}
return nil
}