-
Notifications
You must be signed in to change notification settings - Fork 84
/
main.go
517 lines (455 loc) · 16.1 KB
/
main.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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
package main
import (
"context"
"encoding/base64"
"fmt"
"os"
"os/signal"
"strings"
"sync"
"syscall"
"time"
"github.com/TykTechnologies/tyk-pump/analytics"
"github.com/TykTechnologies/tyk-pump/analytics/demo"
logger "github.com/TykTechnologies/tyk-pump/logger"
"github.com/TykTechnologies/tyk-pump/pumps"
"github.com/TykTechnologies/tyk-pump/serializer"
"github.com/TykTechnologies/tyk-pump/server"
"github.com/TykTechnologies/tyk-pump/storage"
"github.com/gocraft/health"
"github.com/sirupsen/logrus"
kingpin "gopkg.in/alecthomas/kingpin.v2"
)
var (
SystemConfig TykPumpConfiguration
AnalyticsStore storage.AnalyticsStorage
UptimeStorage storage.AnalyticsStorage
Pumps []pumps.Pump
UptimePump pumps.UptimePump
AnalyticsSerializers []serializer.AnalyticsSerializer
)
var log = logger.GetLogger()
var mainPrefix = "main"
var (
//lint:ignore U1000 Function is used when version flag is passed in command line
help = kingpin.CommandLine.HelpFlag.Short('h')
conf = kingpin.Flag("conf", "path to the config file").Short('c').Default("pump.conf").String()
demoMode = kingpin.Flag("demo", "pass orgID string to generate demo data").Default("").String()
demoApiMode = kingpin.Flag("demo-api", "pass apiID string to generate demo data").Default("").String()
demoApiVersionMode = kingpin.Flag("demo-api-version", "pass apiID string to generate demo data").Default("").String()
demoTrackPath = kingpin.Flag("demo-track-path", "enable track path in analytics records").Default("false").Bool()
demoDays = kingpin.Flag("demo-days", "flag that determines the number of days for the analytics records").Default("30").Int()
demoRecordsPerHour = kingpin.Flag("demo-records-per-hour", "flag that determines the number of records per hour for the analytics records").Default("0").Int()
demoFutureData = kingpin.Flag("demo-future-data", "flag that determines if the demo data should be in the future").Default("false").Bool()
debugMode = kingpin.Flag("debug", "enable debug mode").Bool()
//lint:ignore U1000 Function is used when version flag is passed in command line
version = kingpin.Version(pumps.Version)
)
func Init() {
SystemConfig = TykPumpConfiguration{}
kingpin.Parse()
LoadConfig(conf, &SystemConfig)
if SystemConfig.LogFormat == "json" {
log.Formatter = &logrus.JSONFormatter{}
}
envDemo := os.Getenv("TYK_PMP_BUILDDEMODATA")
if envDemo != "" {
log.Warning("Demo mode active via environemnt variable")
demoMode = &envDemo
}
// Serializer init
AnalyticsSerializers = []serializer.AnalyticsSerializer{serializer.NewAnalyticsSerializer(serializer.MSGP_SERIALIZER), serializer.NewAnalyticsSerializer(serializer.PROTOBUF_SERIALIZER)}
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Info("## Tyk Pump, ", pumps.Version, " ##")
// If no environment variable is set, check the configuration file:
if os.Getenv("TYK_LOGLEVEL") == "" {
level := strings.ToLower(SystemConfig.LogLevel)
switch level {
case "", "info":
// default, do nothing
case "error":
log.Level = logrus.ErrorLevel
case "warn":
log.Level = logrus.WarnLevel
case "debug":
log.Level = logrus.DebugLevel
default:
log.WithFields(logrus.Fields{
"prefix": "main",
}).Fatalf("Invalid log level %q specified in config, must be error, warn, debug or info. ", level)
}
}
// If debug mode flag is set, override previous log level parameter:
if *debugMode {
log.Level = logrus.DebugLevel
}
}
func setupAnalyticsStore() {
switch SystemConfig.AnalyticsStorageType {
case "redis", "":
var err error
AnalyticsStore, err = storage.NewTemporalStorageHandler(SystemConfig.AnalyticsStorageConfig, false)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("Error connecting to Temporal Storage: ", err)
}
err = AnalyticsStore.Init()
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("Error connecting to Temporal Storage: ", err)
}
// Copy across the redis configuration
uptimeConf := SystemConfig.AnalyticsStorageConfig
// Swap key prefixes for uptime purger
uptimeConf.KeyPrefix = "host-checker:"
UptimeStorage, err = storage.NewTemporalStorageHandler(uptimeConf, false)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("Error connecting to Temporal Storage: ", err)
}
err = UptimeStorage.Init()
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("Error connecting to Redis: ", err)
}
default:
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("Invalid analytics storage type: ", SystemConfig.AnalyticsStorageType)
}
}
func storeVersion() {
versionConf := SystemConfig.AnalyticsStorageConfig
versionConf.KeyPrefix = "version-check-"
versionStore, err := storage.NewTemporalStorageHandler(versionConf, false)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("Error connecting to Temporal Storage: ", err)
}
err = versionStore.Init()
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("Error connecting to Temporal Storage: ", err)
}
err = versionStore.SetKey("pump", pumps.Version, 0)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Error("Error storing version: ", err)
}
}
func initialisePumps() {
Pumps = []pumps.Pump{}
for key, pmp := range SystemConfig.Pumps {
pumpTypeName := pmp.Type
if pumpTypeName == "" {
pumpTypeName = key
}
pmpType, err := pumps.GetPumpByName(pumpTypeName)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Error("Pump load error (skipping): ", err)
} else {
thisPmp := pmpType.New()
thisPmp.SetFilters(pmp.Filters)
thisPmp.SetTimeout(pmp.Timeout)
thisPmp.SetOmitDetailedRecording(pmp.OmitDetailedRecording)
thisPmp.SetMaxRecordSize(pmp.MaxRecordSize)
thisPmp.SetIgnoreFields(pmp.IgnoreFields)
thisPmp.SetDecodingRequest(pmp.DecodeRawRequest)
thisPmp.SetDecodingResponse(pmp.DecodeRawResponse)
initErr := thisPmp.Init(pmp.Meta)
if initErr != nil {
log.WithField("pump", thisPmp.GetName()).Error("Pump init error (skipping): ", initErr)
} else {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Info("Init Pump: ", key)
Pumps = append(Pumps, thisPmp)
}
}
}
if len(Pumps) == 0 {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Fatal("No pumps configured")
}
if !SystemConfig.DontPurgeUptimeData {
initialiseUptimePump()
}
}
func initialiseUptimePump() {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Info("'dont_purge_uptime_data' set to false, attempting to start Uptime pump! ")
switch SystemConfig.UptimePumpConfig.UptimeType {
case "sql":
UptimePump = &pumps.SQLPump{IsUptime: true}
UptimePump.Init(SystemConfig.UptimePumpConfig.SQLConf)
default:
UptimePump = &pumps.MongoPump{IsUptime: true}
UptimePump.Init(SystemConfig.UptimePumpConfig.MongoConf)
}
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
"type": SystemConfig.UptimePumpConfig.Type,
}).Info("Init Uptime Pump: ", UptimePump.GetName())
}
func StartPurgeLoop(wg *sync.WaitGroup, ctx context.Context, secInterval int, chunkSize int64, expire time.Duration, omitDetails bool) {
for range time.Tick(time.Duration(secInterval) * time.Second) {
job := instrument.NewJob("PumpRecordsPurge")
startTime := time.Now()
for i := -1; i < 10; i++ {
var analyticsKeyName string
if i == -1 {
// if it's the first iteration, we look for tyk-system-analytics to maintain backwards compatibility or if analytics_config.enable_multiple_analytics_keys is disabled in the gateway
analyticsKeyName = storage.ANALYTICS_KEYNAME
} else {
analyticsKeyName = fmt.Sprintf("%v_%v", storage.ANALYTICS_KEYNAME, i)
}
for _, serializerMethod := range AnalyticsSerializers {
analyticsKeyName += serializerMethod.GetSuffix()
AnalyticsValues, err := AnalyticsStore.GetAndDeleteSet(analyticsKeyName, chunkSize, expire)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Error("Error on Purge Loop. Is Temporal Storage down?: " + err.Error())
}
if len(AnalyticsValues) > 0 {
PreprocessAnalyticsValues(AnalyticsValues, serializerMethod, analyticsKeyName, omitDetails, job, startTime, secInterval)
}
}
}
job.Timing("purge_time_all", time.Since(startTime).Nanoseconds())
if !SystemConfig.DontPurgeUptimeData {
UptimeValues, err := UptimeStorage.GetAndDeleteSet(storage.UptimeAnalytics_KEYNAME, chunkSize, expire)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Error("Error on Purge Loop. Is Temporal Storage down?: " + err.Error())
}
UptimePump.WriteUptimeData(UptimeValues)
}
if checkShutdown(ctx, wg) {
return
}
}
}
func PreprocessAnalyticsValues(AnalyticsValues []interface{}, serializerMethod serializer.AnalyticsSerializer, analyticsKeyName string, omitDetails bool, job *health.Job, startTime time.Time, secInterval int) {
keys := make([]interface{}, len(AnalyticsValues))
for i, v := range AnalyticsValues {
decoded := analytics.AnalyticsRecord{}
err := serializerMethod.Decode([]byte(v.(string)), &decoded)
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Debug("Decoded Record: ", decoded)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
"analytic_key": analyticsKeyName,
}).Error("Couldn't unmarshal analytics data:", err)
continue
}
keys[i] = interface{}(decoded)
job.Event("record")
}
// Send to pumps
writeToPumps(keys, job, startTime, int(secInterval))
}
func checkShutdown(ctx context.Context, wg *sync.WaitGroup) bool {
shutdown := false
select {
case <-ctx.Done():
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Info("Shutting down ", len(Pumps), " pumps...")
for _, pmp := range Pumps {
if err := pmp.Shutdown(); err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Error("Error trying to gracefully shutdown "+pmp.GetName()+":", err)
} else {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Info(pmp.GetName() + " gracefully stopped.")
}
}
wg.Done()
shutdown = true
default:
}
return shutdown
}
func writeToPumps(keys []interface{}, job *health.Job, startTime time.Time, purgeDelay int) {
// Send to pumps
if Pumps != nil {
var wg sync.WaitGroup
wg.Add(len(Pumps))
for _, pmp := range Pumps {
go execPumpWriting(&wg, pmp, &keys, purgeDelay, startTime, job)
}
wg.Wait()
} else {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Warning("No pumps defined!")
}
}
func filterData(pump pumps.Pump, keys []interface{}) []interface{} {
shouldTrim := SystemConfig.MaxRecordSize != 0 || pump.GetMaxRecordSize() != 0
filters := pump.GetFilters()
ignoreFields := pump.GetIgnoreFields()
getDecodingResponse := pump.GetDecodedResponse()
getDecodingRequest := pump.GetDecodedRequest()
// Checking to see if all the config options are empty/false
if !getDecodingRequest && !getDecodingResponse && !filters.HasFilter() && !pump.GetOmitDetailedRecording() && !shouldTrim && len(ignoreFields) == 0 {
return keys
}
filteredKeys := make([]interface{}, len(keys))
copy(filteredKeys, keys)
newLenght := 0
for _, key := range keys {
decoded := key.(analytics.AnalyticsRecord)
if pump.GetOmitDetailedRecording() {
decoded.RawRequest = ""
decoded.RawResponse = ""
} else {
if shouldTrim {
if pump.GetMaxRecordSize() != 0 {
decoded.TrimRawData(pump.GetMaxRecordSize())
} else {
decoded.TrimRawData(SystemConfig.MaxRecordSize)
}
}
}
if filters.ShouldFilter(decoded) {
continue
}
if len(ignoreFields) > 0 {
decoded.RemoveIgnoredFields(ignoreFields)
}
// DECODING RAW REQUEST AND RESPONSE FROM BASE 64
if getDecodingRequest {
rawRequest, err := base64.StdEncoding.DecodeString(decoded.RawRequest)
if err == nil {
decoded.RawRequest = string(rawRequest)
}
}
if getDecodingResponse {
rawResponse, err := base64.StdEncoding.DecodeString(decoded.RawResponse)
if err == nil {
decoded.RawResponse = string(rawResponse)
}
}
filteredKeys[newLenght] = decoded
newLenght++
}
filteredKeys = filteredKeys[:newLenght]
return filteredKeys
}
func execPumpWriting(wg *sync.WaitGroup, pmp pumps.Pump, keys *[]interface{}, purgeDelay int, startTime time.Time, job *health.Job) {
timer := time.AfterFunc(time.Duration(purgeDelay)*time.Second, func() {
if pmp.GetTimeout() == 0 {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Warning("Pump ", pmp.GetName(), " is taking more time than the value configured of purge_delay. You should try to set a timeout for this pump.")
} else if pmp.GetTimeout() > purgeDelay {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Warning("Pump ", pmp.GetName(), " is taking more time than the value configured of purge_delay. You should try lowering the timeout configured for this pump.")
}
})
defer timer.Stop()
defer wg.Done()
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Debug("Writing to: ", pmp.GetName())
ch := make(chan error, 1)
// Load pump timeout
timeout := pmp.GetTimeout()
var ctx context.Context
var cancel context.CancelFunc
// Initialize context depending if the pump has a configured timeout
if timeout > 0 {
ctx, cancel = context.WithTimeout(context.Background(), time.Duration(timeout)*time.Second)
} else {
ctx, cancel = context.WithCancel(context.Background())
}
defer cancel()
go func(ch chan error, ctx context.Context, pmp pumps.Pump, keys *[]interface{}) {
filteredKeys := filterData(pmp, *keys)
ch <- pmp.WriteData(ctx, filteredKeys)
}(ch, ctx, pmp, keys)
select {
case err := <-ch:
if err != nil {
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Warning("Error Writing to: ", pmp.GetName(), " - Error:", err)
}
case <-ctx.Done():
switch ctx.Err() {
case context.Canceled:
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Warning("The writing to ", pmp.GetName(), " have got canceled.")
case context.DeadlineExceeded:
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Warning("Timeout Writing to: ", pmp.GetName())
}
}
if job != nil {
job.Timing("purge_time_"+pmp.GetName(), time.Since(startTime).Nanoseconds())
}
}
func main() {
Init()
SetupInstrumentation()
go server.ServeHealthCheck(SystemConfig.HealthCheckEndpointName, SystemConfig.HealthCheckEndpointPort, SystemConfig.HTTPProfile)
// Store version which will be read by dashboard and sent to
// vclu(version check and licecnse utilisation) service
storeVersion()
// Create the store
setupAnalyticsStore()
// prime the pumps
initialisePumps()
if *demoMode != "" {
log.Info("BUILDING DEMO DATA AND EXITING...")
log.Warning("Starting from date: ", time.Now().AddDate(0, 0, -30))
demo.DemoInit(*demoMode, *demoApiMode, *demoApiVersionMode)
demo.GenerateDemoData(*demoDays, *demoRecordsPerHour, *demoMode, *demoFutureData, *demoTrackPath, writeToPumps)
return
}
if SystemConfig.PurgeChunk > 0 {
log.WithField("PurgeChunk", SystemConfig.PurgeChunk).Info("PurgeChunk enabled")
if SystemConfig.StorageExpirationTime == 0 {
SystemConfig.StorageExpirationTime = 60
log.WithField("StorageExpirationTime", 60).Warn("StorageExpirationTime not set, but PurgeChunk enabled, overriding to 60s")
}
}
// start the worker loop
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Infof("Starting purge loop @%d, chunk size %d", SystemConfig.PurgeDelay, SystemConfig.PurgeChunk)
wg := sync.WaitGroup{}
wg.Add(1)
ctx, cancel := context.WithCancel(context.Background())
go StartPurgeLoop(&wg, ctx, SystemConfig.PurgeDelay, SystemConfig.PurgeChunk, time.Duration(SystemConfig.StorageExpirationTime)*time.Second, SystemConfig.OmitDetailedRecording)
termChan := make(chan os.Signal, 1)
signal.Notify(termChan, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
<-termChan // Blocks here until either SIGINT or SIGTERM is received.
cancel() // cancel the context
wg.Wait() // wait till all the pumps finish
log.WithFields(logrus.Fields{
"prefix": mainPrefix,
}).Info("Tyk-pump stopped.")
}