This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
logproc.go
150 lines (130 loc) · 3.7 KB
/
logproc.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
package main
import (
"bytes"
"regexp"
"strings"
log "github.com/Sirupsen/logrus"
"github.com/kr/logfmt"
)
type logValue struct {
Val string
Unit string // (e.g. ms, MB, etc)
}
type logMetrics struct {
typ int
app *string
tags *[]string
prefix *string
metrics map[string]logValue
events []string
}
var dynoNumber *regexp.Regexp = regexp.MustCompile(`\.\d+$`)
func (lm *logMetrics) HandleLogfmt(key, val []byte) error {
i := bytes.LastIndexFunc(val, isDigit)
if i == -1 {
lm.metrics[string(key)] = logValue{string(val), ""}
} else {
lm.metrics[string(key)] = logValue{string(val[:i+1]), string(val[i+1:])}
}
log.WithFields(log.Fields{
"key": string(key),
"val": lm.metrics[string(key)].Val,
"unit": lm.metrics[string(key)].Unit,
}).Debug("logMetric")
return nil
}
// return true if r is an ASCII digit only, as opposed to unicode.IsDigit.
func isDigit(r rune) bool {
return '0' <= r && r <= '9'
}
func parseMetrics(typ int, ld *logData, data *string, out chan *logMetrics) {
var myslice []string
lm := logMetrics{typ, ld.app, ld.tags, ld.prefix, make(map[string]logValue, 5), myslice}
if typ == releaseMsg {
events := append(lm.events, *data)
lm.events = events
out <- &lm
return
}
if err := logfmt.Unmarshal([]byte(*data), &lm); err != nil {
log.WithFields(log.Fields{
"err": err,
}).Warn()
return
}
if source, ok := lm.metrics["source"]; ok {
tags := append(*lm.tags, "type:"+dynoNumber.ReplaceAllString(source.Val, ""))
lm.tags = &tags
}
out <- &lm
}
var scalingRe = regexp.MustCompile("Scaled to (.*) by user .*")
var scaledDynoRe = regexp.MustCompile("([^@ ]*)@([^: ]*):([^ ]*)")
func parseScalingMessage(ld *logData, message *string, out chan *logMetrics) {
if scalingInfo := scalingRe.FindStringSubmatch(*message); scalingInfo != nil {
scaledDynoInfos := scaledDynoRe.FindAllStringSubmatch(scalingInfo[1], -1)
logValues := make(map[string]logValue)
for _, dynoInfo := range scaledDynoInfos {
dynoName := dynoInfo[1]
count := dynoInfo[2]
dynoType := dynoInfo[3]
log.WithFields(log.Fields{
"dynoName": dynoName,
"count": count,
"dynoType": dynoType,
}).Debug()
logValues[dynoName] = logValue{count, dynoType}
}
events := []string{*message}
lm := logMetrics{scalingMsg, ld.app, ld.tags, ld.prefix, logValues, events}
out <- &lm
} else {
log.WithFields(log.Fields{
"err": "Scaling message not matched",
"message": *message,
}).Warn()
}
}
func logProcess(in chan *logData, out chan *logMetrics) {
var data *logData
var ok bool
for {
data, ok = <-in
if !ok { //Exit, channel was closed
return
}
log.Debugln(*data.line)
output := strings.Split(*data.line, " - ")
redisMetrics := strings.Split(output[0], " app[heroku-redis]: source=REDIS")
if len(output) < 2 && len(redisMetrics) == 1 {
continue
}
headers := strings.Split(strings.TrimSpace(output[0]), " ")
if len(headers) >= 6 {
headers = headers[3:6]
}
log.WithField("headers", headers).Debug("Line headers")
if len(redisMetrics) > 1 {
parseMetrics(sampleMsg, data, &redisMetrics[1], out)
} else if headers[1] == "heroku" {
if headers[2] == "router" {
parseMetrics(routerMsg, data, &output[1], out)
} else {
parseMetrics(sampleMsg, data, &output[1], out)
}
} else if headers[1] == "app" {
if headers[2] == "api" {
if strings.HasPrefix(output[1], "Release") {
parseMetrics(releaseMsg, data, &output[1], out)
} else {
parseScalingMessage(data, &output[1], out)
}
} else {
dynoType := dynoNumber.ReplaceAllString(headers[2], "")
tags := append(*data.tags, "source:"+headers[2], "type:"+dynoType)
data.tags = &tags
parseMetrics(metricsTag, data, &output[1], out)
}
}
}
}