-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexporter.go
431 lines (385 loc) · 13.5 KB
/
exporter.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package main
import (
"crypto/tls"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"strconv"
"sync"
"time"
"net/http"
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/log"
"github.com/voxelbrain/goptions"
)
//TODO remove the prometheus log output when running tests
const (
namespace = "ingestor"
)
type ingestorResponse struct {
Consume *float64 `json:"consume"`
ConsumePerSecond *float64 `json:"consume_per_sec"`
ConsumeFail *float64 `json:"consume_fail"`
ConsumeHttpStartStop *float64 `json:"consume_http_start_stop"`
ConsumeValueMetric *float64 `json:"consume_value_metric"`
ConsumeCounterEvent *float64 `json:"consume_counter_event"`
ConsumeLogMessage *float64 `json:"consume_log_message"`
ConsumeError *float64 `json:"consume_error"`
ConsumeContainerMetric *float64 `json:"consume_container_metric"`
ConsumeUnknown *float64 `json:"consume_unknown"`
Ignored *float64 `json:"ignored"`
Forwarded *float64 `json:"forwarded"`
Publish *float64 `json:"publish"`
PublishPerSecond *float64 `json:"publish_per_sec"`
PublishFail *float64 `json:"publish_fail"`
SlowConsumerAlert *float64 `json:"slow_consumer_alert"`
SubinuptBuffer *float64 `json:"subinupt_buffer"`
InstanceID *float64 `json:"instance_id"`
}
type Properties struct {
IngestorProtocol string
IngestorHostname string
IngestorPort int
IngestorPath string
IngestorSkipSsl bool
IngestorResponseTimeoutSeconds int
IngestorExporterMetricsEndpoint string
IngestorExporterPort int
IngestorMetricsEnvironment string
}
type Exporter struct {
mutex sync.Mutex
Properties Properties
consume *prometheus.Desc
consumeFail *prometheus.Desc
consumeHttpStartStop *prometheus.Desc
consumeValueMetric *prometheus.Desc
consumeCounterEvent *prometheus.Desc
consumeLogMessage *prometheus.Desc
consumeError *prometheus.Desc
consumeContainerMetric *prometheus.Desc
consumeUnknown *prometheus.Desc
ignored *prometheus.Desc
forwarded *prometheus.Desc
publish *prometheus.Desc
publishFail *prometheus.Desc
slowConsumerAlert *prometheus.Desc
subinuptBuffer *prometheus.Desc
instanceID *prometheus.Desc
up *prometheus.Desc
healthy *prometheus.Desc
}
type Options struct {
Version bool `goptions:"-v, --version, description='Show the version'"`
Help goptions.Help `goptions:"-h, --help, description='Show this help'"`
}
var Version = "(development)"
func usage() {
goptions.PrintHelp()
os.Exit(1)
}
func NewProperties() Properties {
propertyStruct := Properties{
IngestorProtocol: "http",
IngestorHostname: "127.0.0.1",
IngestorPort: 8080,
IngestorPath: "/stats/app",
IngestorSkipSsl: false,
IngestorResponseTimeoutSeconds: 10,
IngestorExporterMetricsEndpoint: "/metrics",
IngestorExporterPort: 9495,
IngestorMetricsEnvironment: "",
}
value, ok := os.LookupEnv("INGESTOR_PROTOCOL")
if ok == true {
propertyStruct.IngestorProtocol = value
}
value, ok = os.LookupEnv("INGESTOR_HOSTNAME")
if ok == true {
propertyStruct.IngestorHostname = value
}
value, ok = os.LookupEnv("INGESTOR_PORT")
if ok == true {
portInt, err := strconv.Atoi(value)
if err != nil {
panic(fmt.Sprintf("could not read INGESTOR_PORT %s", value))
}
propertyStruct.IngestorPort = portInt
}
value, ok = os.LookupEnv("INGESTOR_PATH")
if ok == true {
propertyStruct.IngestorPath = value
}
value, ok = os.LookupEnv("INGESTOR_SKIP_SSL")
if ok == true {
skipSsl, err := strconv.ParseBool(value)
if err != nil {
panic(fmt.Sprintf("could not read INGESTOR_SKIP_SSL %s", value))
}
propertyStruct.IngestorSkipSsl = skipSsl
}
value, ok = os.LookupEnv("INGESTOR_RESPONSE_TIMEOUT_SECONDS")
if ok == true {
timeoutSec, err := strconv.Atoi(value)
if err != nil {
panic(fmt.Sprintf("could not read INGESTOR_RESPONSE_TIMEOUT_SECONDS %s", value))
}
propertyStruct.IngestorResponseTimeoutSeconds = timeoutSec
}
value, ok = os.LookupEnv("INGESTOR_EXPORTER_METRICS_ENDPOINT")
if ok == true {
propertyStruct.IngestorExporterMetricsEndpoint = value
}
value, ok = os.LookupEnv("INGESTOR_EXPORTER_PORT")
if ok == true {
portInt, err := strconv.Atoi(value)
if err != nil {
panic(fmt.Sprintf("could not read INGESTOR_EXPORTER_PORT %s", value))
}
propertyStruct.IngestorExporterPort = portInt
}
value, ok = os.LookupEnv("INGESTOR_METRICS_ENVIRONMENT")
if ok == true {
propertyStruct.IngestorMetricsEnvironment = value
}
return propertyStruct
}
func (e *Exporter) Describe(ch chan<- *prometheus.Desc) {
ch <- e.up
ch <- e.healthy
ch <- e.consume
ch <- e.consumeHttpStartStop
ch <- e.consumeUnknown
ch <- e.consumeContainerMetric
ch <- e.consumeError
ch <- e.consumeLogMessage
ch <- e.consumeCounterEvent
ch <- e.consumeValueMetric
ch <- e.consumeFail
ch <- e.instanceID
ch <- e.subinuptBuffer
ch <- e.slowConsumerAlert
ch <- e.publishFail
ch <- e.publish
ch <- e.forwarded
ch <- e.ignored
}
func (e *Exporter) collect(ch chan<- prometheus.Metric) error {
timeout := time.Duration(e.Properties.IngestorResponseTimeoutSeconds) * time.Second
client := http.Client{
Timeout: timeout,
}
if e.Properties.IngestorSkipSsl == true {
transCfg := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, // ignore expired SSL certificates
}
client.Transport = transCfg
}
customUrlString := e.Properties.IngestorProtocol + "://" + e.Properties.IngestorHostname + ":" + strconv.Itoa(e.Properties.IngestorPort) + e.Properties.IngestorPath
resp, err := client.Get(customUrlString)
if err != nil {
ch <- prometheus.MustNewConstMetric(e.up, prometheus.GaugeValue, 0)
return fmt.Errorf("Error scraping ingestor: %v", err)
}
ch <- prometheus.MustNewConstMetric(e.up, prometheus.GaugeValue, 1)
if resp.StatusCode >= 400 {
ch <- prometheus.MustNewConstMetric(e.healthy, prometheus.GaugeValue, 0)
return errors.New(fmt.Sprintf("Got bad status code from ingestor %d", resp.StatusCode))
}
ch <- prometheus.MustNewConstMetric(e.healthy, prometheus.GaugeValue, 1)
defer resp.Body.Close()
ingestorResponse := &ingestorResponse{}
bodyBytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Fatal(err)
}
err = json.Unmarshal([]byte(bodyBytes), ingestorResponse)
if err != nil {
log.Fatal(err)
}
if ingestorResponse.Consume != nil {
ch <- prometheus.MustNewConstMetric(e.consume, prometheus.CounterValue, *ingestorResponse.Consume)
}
if ingestorResponse.ConsumeHttpStartStop != nil {
ch <- prometheus.MustNewConstMetric(e.consumeHttpStartStop, prometheus.CounterValue, *ingestorResponse.ConsumeHttpStartStop)
}
if ingestorResponse.ConsumeFail != nil {
ch <- prometheus.MustNewConstMetric(e.consumeFail, prometheus.CounterValue, *ingestorResponse.ConsumeFail)
}
if ingestorResponse.ConsumeValueMetric != nil {
ch <- prometheus.MustNewConstMetric(e.consumeValueMetric, prometheus.CounterValue, *ingestorResponse.ConsumeValueMetric)
}
if ingestorResponse.ConsumeCounterEvent != nil {
ch <- prometheus.MustNewConstMetric(e.consumeCounterEvent, prometheus.CounterValue, *ingestorResponse.ConsumeCounterEvent)
}
if ingestorResponse.ConsumeLogMessage != nil {
ch <- prometheus.MustNewConstMetric(e.consumeLogMessage, prometheus.CounterValue, *ingestorResponse.ConsumeLogMessage)
}
if ingestorResponse.ConsumeError != nil {
ch <- prometheus.MustNewConstMetric(e.consumeError, prometheus.CounterValue, *ingestorResponse.ConsumeError)
}
if ingestorResponse.ConsumeContainerMetric != nil {
ch <- prometheus.MustNewConstMetric(e.consumeContainerMetric, prometheus.CounterValue, *ingestorResponse.ConsumeContainerMetric)
}
if ingestorResponse.ConsumeUnknown != nil {
ch <- prometheus.MustNewConstMetric(e.consumeUnknown, prometheus.CounterValue, *ingestorResponse.ConsumeUnknown)
}
if ingestorResponse.SlowConsumerAlert != nil {
ch <- prometheus.MustNewConstMetric(e.slowConsumerAlert, prometheus.CounterValue, *ingestorResponse.SlowConsumerAlert)
}
if ingestorResponse.Publish != nil {
ch <- prometheus.MustNewConstMetric(e.publish, prometheus.CounterValue, *ingestorResponse.Publish)
}
if ingestorResponse.PublishFail != nil {
ch <- prometheus.MustNewConstMetric(e.publishFail, prometheus.CounterValue, *ingestorResponse.PublishFail)
}
if ingestorResponse.Ignored != nil {
ch <- prometheus.MustNewConstMetric(e.ignored, prometheus.CounterValue, *ingestorResponse.Ignored)
}
if ingestorResponse.Forwarded != nil {
ch <- prometheus.MustNewConstMetric(e.forwarded, prometheus.CounterValue, *ingestorResponse.Forwarded)
}
if ingestorResponse.SubinuptBuffer != nil {
ch <- prometheus.MustNewConstMetric(e.subinuptBuffer, prometheus.GaugeValue, *ingestorResponse.SubinuptBuffer)
}
if ingestorResponse.InstanceID != nil {
ch <- prometheus.MustNewConstMetric(e.instanceID, prometheus.GaugeValue, *ingestorResponse.InstanceID)
}
return nil
}
// Collect fetches the stats from configured ingestor location and delivers them
// as Prometheus metrics.
// It implements prometheus.Collector.
func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
e.mutex.Lock() // To protect metrics from concurrent collects.
defer e.mutex.Unlock()
if err := e.collect(ch); err != nil {
log.Errorf("Error scraping ingestor: %s", err)
}
return
}
func NewExporter(properties Properties) *Exporter {
constLabels := map[string]string{
"ingestor_protocol": properties.IngestorProtocol,
"ingestor_hostname": properties.IngestorHostname,
"ingestor_port": strconv.Itoa(properties.IngestorPort),
"ingestor_path": properties.IngestorPath,
"environment": properties.IngestorMetricsEnvironment,
}
return &Exporter{
Properties: properties,
up: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "up"),
"Could ingestor be reached",
nil,
constLabels),
healthy: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "healthy"),
"Is ingestor giving successful status codes",
nil,
constLabels),
consume: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_total"),
"Messages received",
nil,
constLabels),
consumeFail: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_fail_total"),
"Messages failed to be consumed",
nil,
constLabels),
consumeHttpStartStop: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_http_start_stop_total"),
"HttpStartStop messages received",
nil,
constLabels),
consumeValueMetric: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_value_metric_total"),
"ValueMetric messages received",
nil,
constLabels),
consumeCounterEvent: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_counter_event_total"),
"CounterEvent messages received",
nil,
constLabels),
consumeLogMessage: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_log_message_total"),
"Log messages received",
nil,
constLabels),
consumeError: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_error_total"),
"Error messages received",
nil,
constLabels),
consumeContainerMetric: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_container_metric_total"),
"ContainerMetric messages received",
nil,
constLabels),
consumeUnknown: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "consume_unknown_total"),
"Unknown type messages received",
nil,
constLabels),
ignored: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "ignored_total"),
"Messages dropped due to no forwarding rule",
nil,
constLabels),
forwarded: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "forwarded_total"),
"Messages enqueued to be sent to syslog endpoint",
nil,
constLabels),
publish: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "publish_total"),
"Messages succesfully sent to syslog endpoint",
nil,
constLabels),
publishFail: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "publish_fail_total"),
"Messages that couldn't be sent to syslog endpoint",
nil,
constLabels),
slowConsumerAlert: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "slow_consumer_alert_total"),
"Slow consumer alerts emitted by noaa",
nil,
constLabels),
subinuptBuffer: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "subinupt_buffer"),
"Messages in buffer",
nil,
constLabels),
instanceID: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "", "instance_id"),
"ID for nozzle instance. This is used to identify stats from different instances",
nil,
constLabels),
}
}
func main() {
options := Options{}
err := goptions.Parse(&options)
if err != nil {
usage()
}
if options.Version {
fmt.Printf("%s - Version %s\n", os.Args[0], Version)
os.Exit(0)
}
properties := NewProperties()
exporter := NewExporter(properties)
prometheus.MustRegister(exporter)
http.Handle(exporter.Properties.IngestorExporterMetricsEndpoint, promhttp.Handler())
ingestorExporterPort := ":" + strconv.Itoa(exporter.Properties.IngestorExporterPort)
err = http.ListenAndServe(ingestorExporterPort, nil)
if err != nil {
panic(err)
}
}