forked from papertrail/remote_syslog2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote_syslog.go
127 lines (105 loc) · 3.52 KB
/
remote_syslog.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
package main
import (
"net"
"os"
"path"
"path/filepath"
"regexp"
"strconv"
"time"
"github.com/ActiveState/tail"
"github.com/howbazaar/loggo"
"github.com/papertrail/remote_syslog2/syslog"
"github.com/papertrail/remote_syslog2/utils"
)
var log = loggo.GetLogger("")
// Tails a single file
func tailOne(file string, excludePatterns []*regexp.Regexp, logger *syslog.Logger, wr *WorkerRegistry, severity syslog.Priority, facility syslog.Priority) {
defer wr.Remove(file)
wr.Add(file)
tailConfig := tail.Config{ReOpen: true, Follow: true, MustExist: true, Location: &tail.SeekInfo{0, os.SEEK_END}}
t, err := tail.TailFile(file, tailConfig)
if err != nil {
log.Errorf("%s", err)
return
}
for line := range t.Lines {
if !matchExps(line.Text, excludePatterns) {
logger.Packets <- syslog.Packet{
Severity: severity,
Facility: facility,
Time: time.Now(),
Hostname: logger.ClientHostname,
Tag: path.Base(file),
Message: line.Text,
}
log.Tracef("Forwarding: %s", line.Text)
} else {
log.Tracef("Not Forwarding: %s", line.Text)
}
}
log.Errorf("Tail worker executed abnormally")
}
// Tails files speficied in the globs and re-evaluates the globs
// at the specified interval
func tailFiles(globs []string, excludedFiles []*regexp.Regexp, excludePatterns []*regexp.Regexp, interval RefreshInterval, logger *syslog.Logger, severity syslog.Priority, facility syslog.Priority) {
wr := NewWorkerRegistry()
log.Debugf("Evaluating globs every %s", interval.Duration)
logMissingFiles := true
for {
globFiles(globs, excludedFiles, excludePatterns, logger, &wr, logMissingFiles, severity, facility)
time.Sleep(interval.Duration)
logMissingFiles = false
}
}
//
func globFiles(globs []string, excludedFiles []*regexp.Regexp, excludePatterns []*regexp.Regexp, logger *syslog.Logger, wr *WorkerRegistry, logMissingFiles bool, severity syslog.Priority, facility syslog.Priority) {
log.Debugf("Evaluating file globs")
for _, glob := range globs {
files, err := filepath.Glob(utils.ResolvePath(glob))
if err != nil {
log.Errorf("Failed to glob %s: %s", glob, err)
} else if files == nil && logMissingFiles {
log.Errorf("Cannot forward %s, it may not exist", glob)
}
for _, file := range files {
switch {
case wr.Exists(file):
log.Debugf("Skipping %s because it is already running", file)
case matchExps(file, excludedFiles):
log.Debugf("Skipping %s because it is excluded by regular expression", file)
default:
log.Infof("Forwarding %s", file)
go tailOne(file, excludePatterns, logger, wr, severity, facility)
}
}
}
}
// Evaluates each regex against the string. If any one is a match
// the function returns true, otherwise it returns false
func matchExps(value string, expressions []*regexp.Regexp) bool {
for _, exp := range expressions {
if exp.MatchString(value) {
return true
}
}
return false
}
func main() {
cm := NewConfigManager()
if cm.Daemonize() {
utils.Daemonize(cm.DebugLogFile(), cm.PidFile())
}
loggo.ConfigureLoggers(cm.LogLevels())
raddr := net.JoinHostPort(cm.DestHost(), strconv.Itoa(cm.DestPort()))
log.Infof("Connecting to %s over %s", raddr, cm.DestProtocol())
logger, err := syslog.Dial(cm.Hostname(), cm.DestProtocol(), raddr, cm.RootCAs())
if err != nil {
log.Criticalf("Cannot connect to server: %v", err)
os.Exit(1)
}
go tailFiles(cm.Files(), cm.ExcludeFiles(), cm.ExcludePatterns(), cm.RefreshInterval(), logger, cm.Severity(), cm.Facility())
for err = range logger.Errors {
log.Errorf("Syslog error: %v", err)
}
}