-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
105 lines (88 loc) · 2.22 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
package main
import (
"github.com/briandowns/spinner"
"os"
"os/signal"
"syscall"
"time"
)
// Minimum delay between calls to Graylog
const minDelay = 0.2
// Maximum delay between calls to Graylog
const maxDelay = 30.0
// Back-off factor when increasing the delay.
const delayIncreaseFactor = 2.0
// Adjust the delay between calls to Graylog so we don't hammer it when no messages have
// arrived for a while.
func adjustDelay(delay float64, messages []logMessage) float64 {
if len(messages) == 0 {
if delay < maxDelay {
delay *= delayIncreaseFactor
if delay > maxDelay {
delay = maxDelay
}
}
} else {
delay = minDelay
}
return delay
}
func delayForSeconds(delay float64) {
delayInMilliseconds := int(delay * 1000.0)
time.Sleep(time.Duration(delayInMilliseconds) * time.Millisecond)
}
func setupSpinner() *spinner.Spinner {
s := spinner.New(spinner.CharSets[9], 100*time.Millisecond)
s.UpdateCharSet(spinner.CharSets[21]) // box of dots
s.Writer = os.Stderr
s.HideCursor = true
s.Color("red", "bold")
return s
}
func makeSignalsChannel() chan os.Signal {
c := make(chan os.Signal, 1)
signal.Notify(c,
// https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html
syscall.SIGTERM, // "the normal way to politely ask a program to terminate"
syscall.SIGINT, // Ctrl+C
syscall.SIGQUIT, // Ctrl-\
syscall.SIGKILL, // "always fatal", "SIGKILL and SIGSTOP may not be caught by a program"
syscall.SIGHUP, // "terminal is disconnected"
)
return c
}
func main() {
opts := parseArgs()
if opts.listStreams {
streams := fetchStreams(opts)
commandListStreams(streams)
os.Exit(0)
}
if !opts.tail {
messages, streams := commandListMessages(opts)
printMessages(messages, opts, streams)
} else {
var delay = minDelay
s := setupSpinner()
s.Start()
exitChan := makeSignalsChannel()
// Handle exit signals - only needed when tailing
go func() {
for _ = range exitChan {
s.Stop()
os.Exit(0)
}
}()
//noinspection GoInfiniteFor
for {
messages, streams := commandListMessages(opts)
if len(messages) > 0 {
s.Stop()
printMessages(messages, opts, streams)
s.Start()
}
delayForSeconds(delay)
delay = adjustDelay(delay, messages)
}
}
}