-
Notifications
You must be signed in to change notification settings - Fork 0
/
receiver.go
167 lines (144 loc) · 3.94 KB
/
receiver.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
package main
import (
"bufio"
"compress/zlib"
"crypto/tls"
"crypto/x509"
"fmt"
"io"
"io/ioutil"
"net"
"strconv"
"strings"
"sync/atomic"
log "github.com/sirupsen/logrus"
// "github.com/pkg/profile"
)
func runReceiver(
address string,
port int,
inputChan chan *Metric,
TLS bool,
mutualTLS bool,
tlsCaCert string,
tlsCert string,
tlsKey string,
ignoreCert bool,
compress bool) {
rlog = clog.WithFields(log.Fields{
"address": address,
"port": port,
"tls": TLS,
"mutualTLS": mutualTLS,
"ignoreCert": ignoreCert,
"compress": compress,
"thread": "receiver",
})
netAddress := fmt.Sprintf("%s:%d", address, port)
rlog.Info("Starting Receiver.")
var listener net.Listener
var err error
if TLS || mutualTLS {
certs, err := tls.LoadX509KeyPair(tlsCert, tlsKey)
if err != nil {
rlog.WithFields(log.Fields{"error": err}).Fatal("TLS Listener server certificates error.")
}
var config *tls.Config
if mutualTLS {
caCert, err := ioutil.ReadFile(tlsCaCert)
if err != nil {
rlog.WithFields(log.Fields{"error": err}).Fatal("TLS Listener CA certificate error.")
}
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
config = &tls.Config{
ClientCAs: caCertPool,
ClientAuth: tls.RequireAndVerifyClientCert,
Certificates: []tls.Certificate{certs},
MinVersion: tls.VersionTLS12,
MaxVersion: tls.VersionTLS12,
DynamicRecordSizingDisabled: false,
PreferServerCipherSuites: true,
}
} else {
config = &tls.Config{
Certificates: []tls.Certificate{certs},
InsecureSkipVerify: ignoreCert,
MinVersion: tls.VersionTLS12,
MaxVersion: tls.VersionTLS12,
DynamicRecordSizingDisabled: false,
PreferServerCipherSuites: true,
}
}
listener, err = tls.Listen("tcp4", netAddress, config)
if err != nil {
rlog.WithFields(log.Fields{"error": err}).Fatal("TLS Listener error.")
}
} else {
listener, err = net.Listen("tcp4", netAddress)
if err != nil {
rlog.WithFields(log.Fields{"error": err}).Fatal("Listener error.")
}
}
defer listener.Close()
for {
conn, err := listener.Accept()
if err != nil {
rlog.WithFields(log.Fields{"error": err}).Fatal("Reader connection acception error.")
}
go readMetric(conn, inputChan, compress)
}
}
func readMetric(connection net.Conn, inputChan chan *Metric, compress bool) {
var uncompressedConn io.ReadCloser
var err error
if compress == true {
uncompressedConn, err = zlib.NewReader(connection)
if err != nil {
rlog.WithFields(log.Fields{"error": err}).Error("Decompression error.")
atomic.AddInt64(&state.ReadError, 1)
return
}
} else {
uncompressedConn = connection
}
scanner := bufio.NewScanner(uncompressedConn)
for scanner.Scan() {
metricString := scanner.Text()
rlog.WithFields(log.Fields{"metric": metricString}).Debug("Metric received.")
metricSlice := strings.Split(metricString, " ")
metric := Metric{}
switch len(metricSlice) {
case 3:
metric.Tenant = ""
case 4:
metric.Tenant = metricSlice[3]
default:
rlog.WithFields(log.Fields{"metric": metricString}).Error("Bad metric.")
atomic.AddInt64(&state.Bad, 1)
connection.Close()
return
}
timestamp, err := strconv.ParseInt(metricSlice[2], 10, 64)
if err != nil {
rlog.WithFields(log.Fields{
"metric": metricString,
"timestampString": metricSlice[2],
"error": err,
}).Error("Timestamp error.")
atomic.AddInt64(&state.Bad, 1)
return
}
metric.Prefix = ""
metric.Path = metricSlice[0]
metric.Value = metricSlice[1]
metric.Timestamp = timestamp
inputChan <- &metric
atomic.AddInt64(&state.In, 1)
}
if err := scanner.Err(); err != nil {
rlog.WithFields(log.Fields{"error": err}).Error("Error reading input.")
atomic.AddInt64(&state.ReadError, 1)
}
uncompressedConn.Close()
}