-
Notifications
You must be signed in to change notification settings - Fork 9
/
exporter.go
591 lines (499 loc) · 17.8 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
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
/*
Copyright © 2021, 2022, 2023 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
// Generated documentation is available at:
// https://pkg.go.dev/github.com/RedHatInsights/insights-results-aggregator-exporter
//
// Documentation in literate-programming-style is available at:
// https://redhatinsights.github.io/insights-results-aggregator-exporter/packages/exporter.html
import (
"bytes"
"flag"
"fmt"
"os"
"strings"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
// Messages
const (
versionMessage = "Insights Results Aggregator Exporter version 1.0"
authorsMessage = "Pavel Tisnovsky, Red Hat Inc."
operationFailedMessage = "Operation failed"
listOfTablesMsg = "List of tables"
tableNameMsg = "Table name"
tableIsIgnored = "Table is ignored, skipping export"
)
// Exit codes
const (
// ExitStatusOK means that the tool finished with success
ExitStatusOK = iota
// ExitStatusLoggingError is returned in case of any logging initialization
// error
ExitStatusLoggingError
// ExitStatusStorageError is returned in case of any consumer-related
// error
ExitStatusStorageError
// ExitStatusS3Error is returned in case of any error related with
// S3/Minio connection
ExitStatusS3Error
// ExitStatusConfigurationError is returned in case user provide wrong
// configuration on command line or in configuration file
ExitStatusConfigurationError
// ExitStatusIOError is returned in case of any I/O error (export data
// into file failed etc.)
ExitStatusIOError
)
const (
configFileEnvVariableName = "INSIGHTS_RESULTS_AGGREGATOR_EXPORTER_CONFIG_FILE"
defaultConfigFileName = "config"
)
// output files or objects containing metadata
const (
listOfTables = "_tables.csv"
metadataTable = "_metadata.csv"
disabledRules = "_disabled_rules.csv"
logFile = "_logs.txt"
)
// messages
const (
readDisabledRulesInfoFailed = "Read disabled rules info failed"
storeDisabledRulesIntoFileFailed = "Store disabled rules into file failed"
readingListOfTables = "Reading list of tables"
exportingDisabledRules = "Exporting disabled rules"
closingConnectionToStorage = "Closing connection to storage"
exportingTables = "Exporting tables"
exportingTable = "Exporting table"
exportingMetadata = "Exporting metadata"
unknownOutputType = "Unknown output type: %s"
)
// flags
const (
s3Output = "S3"
fileOutput = "file"
)
// showVersion function displays version information.
func showVersion() {
fmt.Println(versionMessage)
}
// showAuthors function displays information about authors.
func showAuthors() {
fmt.Println(authorsMessage)
}
// showConfiguration function displays actual configuration.
func showConfiguration(config *ConfigStruct) {
storageConfig := GetStorageConfiguration(config)
log.Info().
Str("Driver", storageConfig.Driver).
Str("DB Name", storageConfig.PGDBName).
Str("Username", storageConfig.PGUsername). // password is omitted on purpose
Str("Host", storageConfig.PGHost).
Int("DB Port", storageConfig.PGPort).
Bool("LogSQLQueries", storageConfig.LogSQLQueries).
Msg("Storage configuration")
loggingConfig := GetLoggingConfiguration(config)
log.Info().
Str("Level", loggingConfig.LogLevel).
Bool("Pretty colored debug logging", loggingConfig.Debug).
Msg("Logging configuration")
s3Configuration := GetS3Configuration(config)
log.Info().
Str("Type", s3Configuration.Type).
Str("URL", s3Configuration.EndpointURL).
Uint("S3 Port", s3Configuration.EndpointPort).
Str("AccessKeyID", s3Configuration.AccessKeyID).
Str("SecretAccessKey", s3Configuration.SecretAccessKey).
Bool("Use SSL", s3Configuration.UseSSL).
Str("Bucket name", s3Configuration.Bucket).
Str("Bucket prefix", s3Configuration.Prefix).
Msg("S3 configuration")
}
// constructIgnoredTablesMap helper function splits list of tables by comma and
// constructs a map from it where keys are taken from splitted string
func constructIgnoredTablesMap(input string) IgnoredTables {
tables := strings.Split(input, ",")
// prepare empty map with given capacity
var m = make(IgnoredTables, len(tables))
// don't add empty string into a map
if input == "" {
return m
}
// put ignored tables into such map
for _, table := range tables {
m[table] = struct{}{}
}
return m
}
// performDataExport function exports all data into selected output
func performDataExport(configuration *ConfigStruct, cliFlags CliFlags, operationLogger *zerolog.Logger) (int, error) {
operationLogger.Info().Msg("Retrieving connection to storage")
// prepare the storage
storageConfiguration := GetStorageConfiguration(configuration)
storage, err := NewStorage(&storageConfiguration)
if err != nil {
log.Err(err).Msg(operationFailedMessage)
operationLogger.Err(err).Msg("Unable to retrieve connection to storage")
return ExitStatusStorageError, err
}
ignoredTablesMap := constructIgnoredTablesMap(cliFlags.IgnoredTables)
switch cliFlags.Output {
case s3Output:
return performDataExportToS3(configuration, storage,
cliFlags.ExportMetadata, cliFlags.ExportDisabledRules,
operationLogger, cliFlags.Limit, ignoredTablesMap)
case fileOutput:
return performDataExportToFiles(configuration, storage,
cliFlags.ExportMetadata, cliFlags.ExportDisabledRules,
operationLogger, cliFlags.Limit, ignoredTablesMap)
default:
err := fmt.Errorf(unknownOutputType, cliFlags.Output)
operationLogger.Err(err).Msg("Wrong output type selected")
return ExitStatusConfigurationError, err
}
}
// performDataExportToS3 exports all tables and metadata info configured S3
// bucket
func performDataExportToS3(configuration *ConfigStruct,
storage *DBStorage, exportMetadata bool,
exportDisabledRules bool,
operationLogger *zerolog.Logger, limit int,
ignoredTables IgnoredTables) (int, error) {
operationLogger.Info().Msg("Exporting to S3")
operationLogger.Info().Msg(readingListOfTables)
minioClient, context, err := NewS3Connection(configuration)
if err != nil {
return ExitStatusS3Error, err
}
tableNames, err := storage.ReadListOfTables()
if err != nil {
log.Err(err).Msg(operationFailedMessage)
operationLogger.Err(err).Msg(operationFailedMessage)
return ExitStatusStorageError, err
}
log.Info().Int("tables count", len(tableNames)).Msg(listOfTablesMsg)
// log into terminal
printTables(tableNames)
s3config := GetS3Configuration(configuration)
bucket, bucketPrefix := s3config.Bucket, s3config.Prefix
log.Info().Str("bucket name", bucket).Msg("S3 bucket to write to")
listOfTablesObject := setObjectPrefix(bucketPrefix, listOfTables)
metadataTableObject := setObjectPrefix(bucketPrefix, metadataTable)
if exportMetadata {
operationLogger.Info().Msg(exportingMetadata)
// export list of all tables into S3
err = storeTableNames(context, minioClient,
bucket, listOfTablesObject, tableNames)
if err != nil {
const msg = "Store table list to S3 failed"
log.Err(err).Msg(msg)
operationLogger.Err(err).Msg(msg)
return ExitStatusStorageError, err
}
// export tables metadata into S3
err = storage.StoreTableMetadataIntoS3(context, minioClient,
bucket, metadataTableObject, tableNames)
if err != nil {
const msg = "Store tables metadata to S3 failed"
log.Err(err).Msg(msg)
return ExitStatusStorageError, err
}
}
if exportDisabledRules {
operationLogger.Info().Msg(exportingDisabledRules)
// export rules disabled by more users into CSV file
disabledRulesInfo, err := storage.ReadDisabledRules()
if err != nil {
log.Err(err).Msg(readDisabledRulesInfoFailed)
operationLogger.Err(err).Msg(readDisabledRulesInfoFailed)
return ExitStatusStorageError, err
}
// export list of disabled rules
err = storeDisabledRulesIntoS3(context, minioClient, bucket,
disabledRules, disabledRulesInfo)
if err != nil {
log.Err(err).Msg(storeDisabledRulesIntoFileFailed)
operationLogger.Err(err).Msg(storeDisabledRulesIntoFileFailed)
return ExitStatusIOError, err
}
}
operationLogger.Info().Msg(exportingTables)
// read content of all tables and perform export
for _, tableName := range tableNames {
// ignore table if specified by user
if _, found := ignoredTables[string(tableName)]; found {
operationLogger.Info().
Str(tableNameMsg, string(tableName)).
Msg(tableIsIgnored)
continue
}
operationLogger.Info().
Str(tableNameMsg, string(tableName)).
Msg(exportingTable)
err = storage.StoreTable(context, minioClient, bucket, bucketPrefix, tableName, limit)
if err != nil {
const msg = "Store table into S3 failed"
log.Err(err).Str(tableNameMsg, string(tableName)).
Msg(msg)
operationLogger.Err(err).Str(tableNameMsg, string(tableName)).
Msg(msg)
return ExitStatusStorageError, err
}
}
operationLogger.Info().Msg(closingConnectionToStorage)
// we have finished, let's close the connection to database
err = storage.Close()
if err != nil {
log.Err(err).Msg(operationFailedMessage)
operationLogger.Err(err).Msg(operationFailedMessage)
return ExitStatusStorageError, err
}
// default exit value + no error
return ExitStatusOK, nil
}
// performDataExportToFiles exports all tables and metadata info files
func performDataExportToFiles(_ *ConfigStruct,
storage *DBStorage, exportMetadata bool,
exportDisabledRules bool,
operationLogger *zerolog.Logger, limit int,
ignoredTables IgnoredTables) (int, error) {
operationLogger.Info().Msg("Exporting to file")
operationLogger.Info().Msg(readingListOfTables)
tableNames, err := storage.ReadListOfTables()
if err != nil {
log.Err(err).Msg(operationFailedMessage)
operationLogger.Err(err).Msg(operationFailedMessage)
return ExitStatusStorageError, err
}
log.Info().Int("count", len(tableNames)).Msg(listOfTablesMsg)
// log into terminal
printTables(tableNames)
if exportMetadata {
operationLogger.Info().Msg(exportingMetadata)
// export list of all tables into CSV file
err = storeTableNamesIntoFile(listOfTables, tableNames)
if err != nil {
const msg = "Store table list to file failed"
log.Err(err).Msg(msg)
operationLogger.Err(err).Msg(msg)
return ExitStatusStorageError, err
}
// export tables metadata into CSV file
err = storage.StoreTableMetadataIntoFile(metadataTable, tableNames)
if err != nil {
const msg = "Store tables metadata to file failed"
log.Err(err).Msg(msg)
operationLogger.Err(err).Msg(msg)
return ExitStatusStorageError, err
}
}
if exportDisabledRules {
operationLogger.Info().Msg(exportingDisabledRules)
// export rules disabled by more users into CSV file
disabledRulesInfo, err := storage.ReadDisabledRules()
if err != nil {
log.Err(err).Msg(readDisabledRulesInfoFailed)
operationLogger.Err(err).Msg(readDisabledRulesInfoFailed)
return ExitStatusStorageError, err
}
// export list of disabled rules
err = storeDisabledRulesIntoFile(disabledRules, disabledRulesInfo)
if err != nil {
log.Err(err).Msg(storeDisabledRulesIntoFileFailed)
operationLogger.Err(err).Msg(storeDisabledRulesIntoFileFailed)
return ExitStatusIOError, err
}
}
operationLogger.Info().Msg(exportingTables)
// read content of all tables and perform export
for _, tableName := range tableNames {
// ignore table if specified by user
if _, found := ignoredTables[string(tableName)]; found {
operationLogger.Info().
Str(tableNameMsg, string(tableName)).
Msg(tableIsIgnored)
continue
}
operationLogger.Info().
Str(tableNameMsg, string(tableName)).
Msg(exportingTable)
err = storage.StoreTableIntoFile(tableName, limit)
if err != nil {
const msg = "Store table into file failed"
log.Err(err).Str(tableNameMsg, string(tableName)).
Msg(msg)
operationLogger.Err(err).Str(tableNameMsg, string(tableName)).
Msg(msg)
return ExitStatusStorageError, err
}
}
operationLogger.Info().Msg(closingConnectionToStorage)
// we have finished, let's close the connection to database
err = storage.Close()
if err != nil {
log.Err(err).Msg(operationFailedMessage)
operationLogger.Err(err).Msg(operationFailedMessage)
return ExitStatusStorageError, err
}
// default exit value + no error
return ExitStatusOK, nil
}
func printTables(tableNames []TableName) {
for i, tableName := range tableNames {
log.Info().Int("#", i+1).Str("table", string(tableName)).Msg("Table in database")
}
}
// checkS3Connection checks if connection to S3 is possible
func checkS3Connection(configuration *ConfigStruct) (int, error) {
log.Info().Msg("Checking connection to S3")
minioClient, context, err := NewS3Connection(configuration)
if err != nil {
return ExitStatusS3Error, err
}
exists, err := s3BucketExists(context, minioClient, GetS3Configuration(configuration).Bucket)
if err != nil {
return ExitStatusS3Error, err
}
if !exists {
log.Error().Msg("Can not find expected bucket")
} else {
log.Info().Msg("Bucket has been found")
}
log.Info().Msg("Connection to S3 seems to be ok")
return ExitStatusOK, nil
}
func storeOpertionLogIntoS3(configuration *ConfigStruct,
buffer bytes.Buffer) error {
minioClient, context, err := NewS3Connection(configuration)
if err != nil {
return err
}
s3config := GetS3Configuration(configuration)
bucketName, bucketPrefix := s3config.Bucket, s3config.Prefix
logFileObject := setObjectPrefix(bucketPrefix, logFile)
return storeBufferToS3(context, minioClient, bucketName, logFileObject, buffer)
}
// doSelectedOperation function perform operation selected on command line.
// When no operation is specified, the Notification writer service is started
// instead.
func doSelectedOperation(configuration *ConfigStruct, cliFlags CliFlags,
operationLogger *zerolog.Logger) (int, error) {
switch {
case cliFlags.ShowVersion:
showVersion()
return ExitStatusOK, nil
case cliFlags.ShowAuthors:
showAuthors()
return ExitStatusOK, nil
case cliFlags.ShowConfiguration:
showConfiguration(configuration)
return ExitStatusOK, nil
case cliFlags.CheckS3Connection:
return checkS3Connection(configuration)
default:
// default operation - data export
return performDataExport(configuration, cliFlags, operationLogger)
}
// this can not happen: return ExitStatusOK, nil
}
func parseFlags() (cliFlags CliFlags) {
// define and parse all command line options
flag.BoolVar(&cliFlags.ShowVersion, "version", false, "show version")
flag.BoolVar(&cliFlags.ShowAuthors, "authors", false, "show authors")
flag.BoolVar(&cliFlags.ShowConfiguration, "show-configuration", false, "show configuration")
flag.BoolVar(&cliFlags.PrintSummaryTable, "summary", false, "print summary table after export")
flag.StringVar(&cliFlags.Output, "output", "S3", "output to: file, S3")
flag.BoolVar(&cliFlags.ExportMetadata, "metadata", false, "export metadata")
flag.BoolVar(&cliFlags.ExportDisabledRules, "disabled-by-more-users", false, "export rules disabled by more users")
flag.BoolVar(&cliFlags.CheckS3Connection, "check-s3-connection", false, "check S3 connection and exit")
flag.BoolVar(&cliFlags.ExportLog, "export-log", false, "export log")
flag.IntVar(&cliFlags.Limit, "limit", -1, "limit number of exported records")
flag.StringVar(&cliFlags.IgnoredTables, "ignore-tables", "", "comma-separated list of tables that will be ignored")
// parse all command line flags
flag.Parse()
return
}
// DummyWriter satisfies Writer interface, but with noop write
type DummyWriter struct{}
// Write method satisfies noop io.Write
func (w DummyWriter) Write(_ []byte) (n int, err error) {
return 0, nil
}
// createOperationLog function constructs operation log instance
func createOperationLog(cliFlags CliFlags, buffer *bytes.Buffer) (zerolog.Logger, error) {
dummyLogger := zerolog.New(DummyWriter{}).With().Logger()
if cliFlags.ExportLog {
switch cliFlags.Output {
case s3Output:
memoryLogger := zerolog.New(buffer).With().Logger()
memoryLogger.Info().Msg("Memory logger initialized")
return memoryLogger, nil
case fileOutput:
logFile, err := os.Create(logFile)
if err != nil {
return dummyLogger, err
}
fileLogger := zerolog.New(logFile).With().Logger()
fileLogger.Info().Msg("File logger initialized")
return fileLogger, nil
default:
return dummyLogger, fmt.Errorf(unknownOutputType, cliFlags.Output)
}
}
return dummyLogger, nil
}
func setObjectPrefix(prefix, object string) string {
if prefix != "" {
return prefix + "/" + object
}
return object
}
func mainWithStatusCode() int {
// parse all command line flags
cliFlags := parseFlags()
// config has exactly the same structure as *.toml file
config, err := LoadConfiguration(configFileEnvVariableName, defaultConfigFileName)
if err != nil {
log.Err(err).Msg("Load configuration")
}
loggingCloser, err := InitLogging(&config)
if err != nil {
log.Err(err).Msg("Init logging")
return ExitStatusLoggingError
}
defer loggingCloser()
var buffer bytes.Buffer
operationLogger, err := createOperationLog(cliFlags, &buffer)
if err != nil {
log.Err(err).Msg("Create operation log")
return ExitStatusIOError
}
// perform selected operation
exitStatus, err := doSelectedOperation(&config, cliFlags, &operationLogger)
if err != nil {
log.Err(err).Msg("Do selected operation")
return exitStatus
}
if cliFlags.ExportLog && cliFlags.Output == s3Output {
err := storeOpertionLogIntoS3(&config, buffer)
if err != nil {
log.Err(err).Msg("Storing log into S3 failed")
return ExitStatusS3Error
}
}
log.Debug().Msg("Finished")
return ExitStatusOK
}
func main() {
exitStatus := mainWithStatusCode()
os.Exit(exitStatus)
}