-
Notifications
You must be signed in to change notification settings - Fork 678
/
Copy pathpump.go
407 lines (366 loc) · 9.08 KB
/
pump.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
402
403
404
405
406
407
package router
import (
"bufio"
"errors"
"io"
"log"
"os"
"strings"
"sync"
"time"
"github.com/fsouza/go-dockerclient"
)
var allowTTY bool
func init() {
pump := &LogsPump{
pumps: make(map[string]*containerPump),
routes: make(map[chan *update]struct{}),
}
setAllowTTY()
LogRouters.Register(pump, "pump")
Jobs.Register(pump, "pump")
}
func getopt(name, dfault string) string {
value := os.Getenv(name)
if value == "" {
value = dfault
}
return value
}
func debug(v ...interface{}) {
if os.Getenv("DEBUG") != "" {
log.Println(v...)
}
}
func backlog() bool {
if os.Getenv("BACKLOG") == "false" {
return false
}
return true
}
func setAllowTTY() {
if t := getopt("ALLOW_TTY", ""); t == "true" {
allowTTY = true
}
debug("setting allowTTY to:", allowTTY)
}
func assert(err error, context string) {
if err != nil {
log.Fatal(context+": ", err)
}
}
func normalName(name string) string {
return name[1:]
}
func normalID(id string) string {
if len(id) > 12 {
return id[:12]
}
return id
}
func logDriverSupported(container *docker.Container) bool {
switch container.HostConfig.LogConfig.Type {
case "json-file", "journald":
return true
default:
return false
}
}
func ignoreContainer(container *docker.Container) bool {
for _, kv := range container.Config.Env {
kvp := strings.SplitN(kv, "=", 2)
if len(kvp) == 2 && kvp[0] == "LOGSPOUT" && strings.ToLower(kvp[1]) == "ignore" {
return true
}
}
excludeLabel := getopt("EXCLUDE_LABEL", "")
excludeValue := "true"
// support EXCLUDE_LABEL having a custom label value
excludeLabelArr := strings.Split(excludeLabel, ":")
if len(excludeLabelArr) == 2 {
excludeValue = excludeLabelArr[1]
excludeLabel = excludeLabelArr[0]
}
if value, ok := container.Config.Labels[excludeLabel]; ok {
return len(excludeLabel) > 0 && strings.ToLower(value) == strings.ToLower(excludeValue)
}
return false
}
func ignoreContainerTTY(container *docker.Container) bool {
if container.Config.Tty && !allowTTY {
return true
}
return false
}
func getInactivityTimeoutFromEnv() time.Duration {
inactivityTimeout, err := time.ParseDuration(getopt("INACTIVITY_TIMEOUT", "0"))
assert(err, "Couldn't parse env var INACTIVITY_TIMEOUT. See https://golang.org/pkg/time/#ParseDuration for valid format.")
return inactivityTimeout
}
type update struct {
*docker.APIEvents
pump *containerPump
}
// LogsPump is responsible for "pumping" logs to their configured destinations
type LogsPump struct {
mu sync.Mutex
pumps map[string]*containerPump
routes map[chan *update]struct{}
client *docker.Client
}
// Name returns the name of the pump
func (p *LogsPump) Name() string {
return "pump"
}
// Setup configures the pump
func (p *LogsPump) Setup() error {
var err error
p.client, err = docker.NewClientFromEnv()
return err
}
func (p *LogsPump) rename(event *docker.APIEvents) {
p.mu.Lock()
defer p.mu.Unlock()
container, err := p.client.InspectContainer(event.ID)
assert(err, "pump")
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
}
// 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 _, listing := range containers {
p.pumpLogs(&docker.APIEvents{
ID: normalID(listing.ID),
Status: "start",
}, false, 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 "start", "restart":
go p.pumpLogs(event, backlog(), inactivityTimeout)
case "rename":
go p.rename(event)
case "die":
go p.update(event)
}
}
return errors.New("docker event stream closed")
}
func (p *LogsPump) pumpLogs(event *docker.APIEvents, backlog bool, inactivityTimeout time.Duration) {
id := normalID(event.ID)
container, err := p.client.InspectContainer(id)
assert(err, "pump")
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 = getopt("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()
p.update(event)
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.InspectContainer(id)
if err != nil {
_, four04 := err.(*docker.NoSuchContainer)
if !four04 {
assert(err, "pump")
}
} 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
}
}()
}
func (p *LogsPump) update(event *docker.APIEvents) {
p.mu.Lock()
defer p.mu.Unlock()
pump, pumping := p.pumps[normalID(event.ID)]
if pumping {
for r := range p.routes {
select {
case r <- &update{event, pump}:
case <-time.After(time.Second * 1):
debug("pump.update(): route timeout, dropping")
defer delete(p.routes, r)
}
}
}
}
// RoutingFrom returns whether a container id is routing from this pump
func (p *LogsPump) RoutingFrom(id string) bool {
p.mu.Lock()
defer p.mu.Unlock()
_, monitoring := p.pumps[normalID(id)]
return monitoring
}
// Route takes a logstream and routes it according to the supplied Route
func (p *LogsPump) Route(route *Route, logstream chan *Message) {
p.mu.Lock()
for _, pump := range p.pumps {
if route.MatchContainer(
normalID(pump.container.ID),
normalName(pump.container.Name),
pump.container.Config.Labels) {
pump.add(logstream, route)
defer pump.remove(logstream)
}
}
updates := make(chan *update)
p.routes[updates] = struct{}{}
p.mu.Unlock()
defer func() {
p.mu.Lock()
delete(p.routes, updates)
p.mu.Unlock()
route.closed = true
}()
for {
select {
case event := <-updates:
switch event.Status {
case "start", "restart":
if route.MatchContainer(
normalID(event.pump.container.ID),
normalName(event.pump.container.Name),
event.pump.container.Config.Labels) {
event.pump.add(logstream, route)
defer event.pump.remove(logstream)
}
case "die":
if strings.HasPrefix(route.FilterID, event.ID) {
// If the route is just about a single container,
// we can stop routing when it dies.
return
}
}
case <-route.Closer():
return
}
}
}
type containerPump struct {
sync.Mutex
container *docker.Container
logstreams map[chan *Message]*Route
}
func newContainerPump(container *docker.Container, stdout, stderr io.Reader) *containerPump {
cp := &containerPump{
container: container,
logstreams: make(map[chan *Message]*Route),
}
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) {
cp.Lock()
defer cp.Unlock()
for logstream, route := range cp.logstreams {
if !route.MatchMessage(msg) {
continue
}
logstream <- msg
}
}
func (cp *containerPump) add(logstream chan *Message, route *Route) {
cp.Lock()
defer cp.Unlock()
cp.logstreams[logstream] = route
}
func (cp *containerPump) remove(logstream chan *Message) {
cp.Lock()
defer cp.Unlock()
delete(cp.logstreams, logstream)
}