-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathparser.go
138 lines (118 loc) · 2.66 KB
/
parser.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
package logparser
import (
"context"
"sync"
"time"
)
type LogEntry struct {
Timestamp time.Time
Content string
Level Level
}
type LogCounter struct {
Level Level
Hash string
Sample string
Messages int
}
type Parser struct {
decoder Decoder
patterns map[patternKey]*patternStat
lock sync.RWMutex
multilineCollector *MultilineCollector
stop func()
onMsgCb OnMsgCallbackF
}
type OnMsgCallbackF func(ts time.Time, level Level, patternHash string, msg string)
func NewParser(ch <-chan LogEntry, decoder Decoder, onMsgCallback OnMsgCallbackF, multilineCollectorTimeout time.Duration) *Parser {
p := &Parser{
decoder: decoder,
patterns: map[patternKey]*patternStat{},
onMsgCb: onMsgCallback,
}
ctx, stop := context.WithCancel(context.Background())
p.stop = stop
p.multilineCollector = NewMultilineCollector(ctx, multilineCollectorTimeout, multilineCollectorLimit)
go func() {
var err error
for {
select {
case <-ctx.Done():
return
case entry := <-ch:
if p.decoder != nil {
if entry.Content, err = p.decoder.Decode(entry.Content); err != nil {
continue
}
}
p.multilineCollector.Add(entry)
}
}
}()
go func() {
for {
select {
case <-ctx.Done():
return
case msg := <-p.multilineCollector.Messages:
p.inc(msg)
}
}
}()
return p
}
func (p *Parser) Stop() {
p.stop()
}
func (p *Parser) inc(msg Message) {
p.lock.Lock()
defer p.lock.Unlock()
if msg.Level == LevelUnknown || msg.Level == LevelDebug || msg.Level == LevelInfo {
key := patternKey{level: msg.Level, hash: ""}
if stat := p.patterns[key]; stat == nil {
p.patterns[key] = &patternStat{}
}
p.patterns[key].messages++
if p.onMsgCb != nil {
p.onMsgCb(msg.Timestamp, msg.Level, "", msg.Content)
}
return
}
pattern := NewPattern(msg.Content)
key := patternKey{level: msg.Level, hash: pattern.Hash()}
stat := p.patterns[key]
if stat == nil {
for k, ps := range p.patterns {
if k.level == msg.Level && ps.pattern.WeakEqual(pattern) {
stat = ps
break
}
}
if stat == nil {
stat = &patternStat{pattern: pattern, sample: msg.Content}
p.patterns[key] = stat
}
}
if p.onMsgCb != nil {
p.onMsgCb(msg.Timestamp, msg.Level, key.hash, msg.Content)
}
stat.messages++
}
func (p *Parser) GetCounters() []LogCounter {
p.lock.RLock()
defer p.lock.RUnlock()
res := make([]LogCounter, 0, len(p.patterns))
for k, ps := range p.patterns {
res = append(res, LogCounter{Level: k.level, Hash: k.hash, Sample: ps.sample, Messages: ps.messages})
}
return res
}
type patternKey struct {
level Level
hash string
}
type patternStat struct {
pattern *Pattern
sample string
messages int
}