forked from galaxydi/go-loghub
-
Notifications
You must be signed in to change notification settings - Fork 113
/
log_config.go
491 lines (436 loc) · 15 KB
/
log_config.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
package sls
import (
"encoding/json"
"errors"
)
// const InputTypes
const (
InputTypeSyslog = "syslog"
InputTypeStreamlog = "streamlog"
InputTypePlugin = "plugin"
InputTypeFile = "file"
)
// const LogFileTypes
const (
LogFileTypeApsaraLog = "apsara_log"
LogFileTypeRegexLog = "common_reg_log"
LogFileTypeJSONLog = "json_log"
LogFileTypeDelimiterLog = "delimiter_log"
)
// const OutputType
const (
OutputTypeLogService = "LogService"
)
// const MergeType
const (
MergeTypeTopic = "topic"
MergeTypeLogstore = "logstore"
)
const (
TopicFormatNone = "none" // no topic
TopicFormatMachineGroup = "group_topic" // machine group's topic
// otherwise, file path regex.
// eg, file path /var/log/nginx/access.log, TopicFormat: /var/log/([^/]+)/access\.log, so topic is 'nginx'
)
var NoConfigFieldError = errors.New("no this config field")
var InvalidTypeError = errors.New("invalid config type")
// IsValidInputType check if specific inputType is valid
func IsValidInputType(inputType string) bool {
switch inputType {
case InputTypeSyslog, InputTypeStreamlog, InputTypePlugin, InputTypeFile:
return true
}
return false
}
// InputDetail defines log_config input
// @note : deprecated and no maintenance
type InputDetail struct {
LogType string `json:"logType"`
LogPath string `json:"logPath"`
FilePattern string `json:"filePattern"`
LocalStorage bool `json:"localStorage"`
TimeKey string `json:"timeKey"`
TimeFormat string `json:"timeFormat"`
LogBeginRegex string `json:"logBeginRegex"`
Regex string `json:"regex"`
Keys []string `json:"key"`
FilterKeys []string `json:"filterKey"`
FilterRegex []string `json:"filterRegex"`
TopicFormat string `json:"topicFormat"`
Separator string `json:"separator"`
AutoExtend bool `json:"autoExtend"`
}
func ConvertToInputDetail(detail InputDetailInterface) (*InputDetail, bool) {
// ConvertToPluginLogConfigInputDetail need a plugin
if mapVal, ok := detail.(map[string]interface{}); ok {
if logType, ok := mapVal["logType"]; !ok || logType != "common_reg_log" {
return nil, false
}
} else {
return nil, false
}
buf, err := json.Marshal(detail)
if err != nil {
return nil, false
}
destDetail := &InputDetail{}
err = json.Unmarshal(buf, destDetail)
return destDetail, err == nil
}
type SensitiveKey struct {
Key string `json:"key"`
Type string `json:"type"`
RegexBegin string `json:"regex_begin"`
RegexContent string `json:"regex_content"`
All bool `json:"all"`
ConstString string `json:"const"`
}
// ApsaraLogConfigInputDetail apsara log config
type ApsaraLogConfigInputDetail struct {
LocalFileConfigInputDetail
LogBeginRegex string `json:"logBeginRegex"`
}
// InitApsaraLogConfigInputDetail ...
func InitApsaraLogConfigInputDetail(detail *ApsaraLogConfigInputDetail) {
InitLocalFileConfigInputDetail(&detail.LocalFileConfigInputDetail)
detail.LogBeginRegex = ".*"
detail.LogType = LogFileTypeApsaraLog
}
func AddNecessaryApsaraLogInputConfigField(inputConfigDetail map[string]interface{}) {
if _, ok := inputConfigDetail["logBeginRegex"]; !ok {
inputConfigDetail["logBeginRegex"] = ".*"
}
}
func ConvertToApsaraLogConfigInputDetail(detail InputDetailInterface) (*ApsaraLogConfigInputDetail, bool) {
// ConvertToPluginLogConfigInputDetail need a plugin
if mapVal, ok := detail.(map[string]interface{}); ok {
if logType, ok := mapVal["logType"]; !ok || logType != "apsara_log" {
return nil, false
}
} else {
return nil, false
}
buf, err := json.Marshal(detail)
if err != nil {
return nil, false
}
destDetail := &ApsaraLogConfigInputDetail{}
err = json.Unmarshal(buf, destDetail)
return destDetail, err == nil
}
// RegexConfigInputDetail regex log config
type RegexConfigInputDetail struct {
LocalFileConfigInputDetail
Key []string `json:"key"`
LogBeginRegex string `json:"logBeginRegex"`
Regex string `json:"regex"`
}
// InitRegexConfigInputDetail ...
func InitRegexConfigInputDetail(detail *RegexConfigInputDetail) {
InitLocalFileConfigInputDetail(&detail.LocalFileConfigInputDetail)
detail.LogBeginRegex = ".*"
detail.Regex = "(.*)"
detail.LogType = LogFileTypeRegexLog
}
func AddNecessaryRegexLogInputConfigField(inputConfigDetail map[string]interface{}) {
if _, ok := inputConfigDetail["logBeginRegex"]; !ok {
inputConfigDetail["logBeginRegex"] = ".*"
}
if _, ok := inputConfigDetail["regex"]; !ok {
inputConfigDetail["regex"] = "(.*)"
}
if _, ok := inputConfigDetail["key"]; !ok {
inputConfigDetail["key"] = []string{"content"}
}
}
func ConvertToRegexConfigInputDetail(detail InputDetailInterface) (*RegexConfigInputDetail, bool) {
// ConvertToPluginLogConfigInputDetail need a plugin
if mapVal, ok := detail.(map[string]interface{}); ok {
if logType, ok := mapVal["logType"]; !ok || logType != "common_reg_log" {
return nil, false
}
} else {
return nil, false
}
buf, err := json.Marshal(detail)
if err != nil {
return nil, false
}
destDetail := &RegexConfigInputDetail{}
err = json.Unmarshal(buf, destDetail)
return destDetail, err == nil
}
// JSONConfigInputDetail pure json log config
type JSONConfigInputDetail struct {
LocalFileConfigInputDetail
TimeKey string `json:"timeKey"`
}
// InitJSONConfigInputDetail ...
func InitJSONConfigInputDetail(detail *JSONConfigInputDetail) {
InitLocalFileConfigInputDetail(&detail.LocalFileConfigInputDetail)
detail.LogType = LogFileTypeJSONLog
}
func AddNecessaryJSONLogInputConfigField(inputConfigDetail map[string]interface{}) {
if _, ok := inputConfigDetail["timeKey"]; !ok {
inputConfigDetail["timeKey"] = ""
}
}
func ConvertToJSONConfigInputDetail(detail InputDetailInterface) (*JSONConfigInputDetail, bool) {
// ConvertToPluginLogConfigInputDetail need a plugin
if mapVal, ok := detail.(map[string]interface{}); ok {
if logType, ok := mapVal["logType"]; !ok || logType != "json_log" {
return nil, false
}
} else {
return nil, false
}
buf, err := json.Marshal(detail)
if err != nil {
return nil, false
}
destDetail := &JSONConfigInputDetail{}
err = json.Unmarshal(buf, destDetail)
return destDetail, err == nil
}
// DelimiterConfigInputDetail delimiter log config
type DelimiterConfigInputDetail struct {
LocalFileConfigInputDetail
Separator string `json:"separator"`
Quote string `json:"quote"`
Key []string `json:"key"`
TimeKey string `json:"timeKey"`
AutoExtend bool `json:"autoExtend"`
}
// InitDelimiterConfigInputDetail ...
func InitDelimiterConfigInputDetail(detail *DelimiterConfigInputDetail) {
InitLocalFileConfigInputDetail(&detail.LocalFileConfigInputDetail)
detail.Quote = "\u0001"
detail.AutoExtend = true
detail.LogType = LogFileTypeDelimiterLog
}
func AddNecessaryDelimiterLogInputConfigField(inputConfigDetail map[string]interface{}) {
if _, ok := inputConfigDetail["quote"]; !ok {
inputConfigDetail["quote"] = "\u0001"
}
if _, ok := inputConfigDetail["autoExtend"]; !ok {
inputConfigDetail["autoExtend"] = true
}
if _, ok := inputConfigDetail["timeKey"]; !ok {
inputConfigDetail["timeKey"] = ""
}
}
func ConvertToDelimiterConfigInputDetail(detail InputDetailInterface) (*DelimiterConfigInputDetail, bool) {
// ConvertToPluginLogConfigInputDetail need a plugin
if mapVal, ok := detail.(map[string]interface{}); ok {
if logType, ok := mapVal["logType"]; !ok || logType != "delimiter_log" {
return nil, false
}
} else {
return nil, false
}
buf, err := json.Marshal(detail)
if err != nil {
return nil, false
}
destDetail := &DelimiterConfigInputDetail{}
err = json.Unmarshal(buf, destDetail)
return destDetail, err == nil
}
// LocalFileConfigInputDetail all file input detail's basic config
type LocalFileConfigInputDetail struct {
CommonConfigInputDetail
LogType string `json:"logType"`
LogPath string `json:"logPath"`
FilePattern string `json:"filePattern"`
TimeFormat string `json:"timeFormat"`
TopicFormat string `json:"topicFormat,omitempty"`
Preserve bool `json:"preserve"`
PreserveDepth int `json:"preserveDepth"`
FileEncoding string `json:"fileEncoding,omitempty"`
DiscardUnmatch bool `json:"discardUnmatch"`
MaxDepth int `json:"maxDepth"`
TailExisted bool `json:"tailExisted"`
DiscardNonUtf8 bool `json:"discardNonUtf8"`
DelaySkipBytes int `json:"delaySkipBytes"`
IsDockerFile bool `json:"dockerFile"`
DockerIncludeLabel map[string]string `json:"dockerIncludeLabel,omitempty"`
DockerExcludeLabel map[string]string `json:"dockerExcludeLabel,omitempty"`
DockerIncludeEnv map[string]string `json:"dockerIncludeEnv,omitempty"`
DockerExcludeEnv map[string]string `json:"dockerExcludeEnv,omitempty"`
}
func GetFileConfigInputDetailType(detail InputDetailInterface) (string, bool) {
// ConvertToPluginLogConfigInputDetail need a plugin
if mapVal, ok := detail.(map[string]interface{}); ok {
if logType, ok := mapVal["logType"]; ok {
return logType.(string), true
}
}
return "", false
}
// InitLocalFileConfigInputDetail ...
func InitLocalFileConfigInputDetail(detail *LocalFileConfigInputDetail) {
InitCommonConfigInputDetail(&detail.CommonConfigInputDetail)
detail.FileEncoding = "utf8"
detail.MaxDepth = 100
detail.TopicFormat = TopicFormatNone
detail.Preserve = true
detail.DiscardUnmatch = true
}
func AddNecessaryLocalFileInputConfigField(inputConfigDetail map[string]interface{}) {
if _, ok := inputConfigDetail["fileEncoding"]; !ok {
inputConfigDetail["fileEncoding"] = "utf8"
}
if _, ok := inputConfigDetail["maxDepth"]; !ok {
inputConfigDetail["maxDepth"] = 100
}
if _, ok := inputConfigDetail["topicFormat"]; !ok {
inputConfigDetail["topicFormat"] = TopicFormatNone
}
if _, ok := inputConfigDetail["preserve"]; !ok {
inputConfigDetail["preserve"] = true
}
if _, ok := inputConfigDetail["discardUnmatch"]; !ok {
inputConfigDetail["discardUnmatch"] = true
}
if _, ok := inputConfigDetail["timeFormat"]; !ok {
inputConfigDetail["timeFormat"] = ""
}
}
// PluginLogConfigInputDetail plugin log config, eg: docker stdout, binlog, mysql, http...
type PluginLogConfigInputDetail struct {
CommonConfigInputDetail
PluginDetail LogConfigPluginInput `json:"plugin"`
}
// InitPluginLogConfigInputDetail ...
func InitPluginLogConfigInputDetail(detail *PluginLogConfigInputDetail) {
InitCommonConfigInputDetail(&detail.CommonConfigInputDetail)
}
func ConvertToPluginLogConfigInputDetail(detail InputDetailInterface) (*PluginLogConfigInputDetail, bool) {
// ConvertToPluginLogConfigInputDetail need a plugin
if mapVal, ok := detail.(map[string]interface{}); ok {
if _, ok := mapVal["plugin"]; !ok {
return nil, false
}
if _, ok := mapVal["logType"]; ok {
return nil, false
}
buf, err := json.Marshal(detail)
if err != nil {
return nil, false
}
destDetail := &PluginLogConfigInputDetail{}
err = json.Unmarshal(buf, destDetail)
return destDetail, err == nil
}
return nil, false
}
// StreamLogConfigInputDetail syslog config
type StreamLogConfigInputDetail struct {
CommonConfigInputDetail
Tag string `json:"tag"`
}
// InitStreamLogConfigInputDetail ...
func InitStreamLogConfigInputDetail(detail *StreamLogConfigInputDetail) {
InitCommonConfigInputDetail(&detail.CommonConfigInputDetail)
}
func ConvertToStreamLogConfigInputDetail(detail InputDetailInterface) (*StreamLogConfigInputDetail, bool) {
// ConvertToStreamLogConfigInputDetail need a tag
if mapVal, ok := detail.(map[string]interface{}); ok {
if _, ok := mapVal["tag"]; !ok {
return nil, false
}
} else {
return nil, false
}
buf, err := json.Marshal(detail)
if err != nil {
return nil, false
}
destDetail := &StreamLogConfigInputDetail{}
err = json.Unmarshal(buf, destDetail)
return destDetail, err == nil
}
// CommonConfigInputDetail is all input detail's basic config
type CommonConfigInputDetail struct {
LocalStorage bool `json:"localStorage"`
FilterKeys []string `json:"filterKey,omitempty"`
FilterRegex []string `json:"filterRegex,omitempty"`
ShardHashKey []string `json:"shardHashKey,omitempty"`
EnableTag bool `json:"enableTag"`
EnableRawLog bool `json:"enableRawLog"`
MaxSendRate int `json:"maxSendRate"`
SendRateExpire int `json:"sendRateExpire"`
SensitiveKeys []SensitiveKey `json:"sensitive_keys,omitempty"`
MergeType string `json:"mergeType,omitempty"`
DelayAlarmBytes int `json:"delayAlarmBytes,omitempty"`
AdjustTimeZone bool `json:"adjustTimezone"`
LogTimeZone string `json:"logTimezone,omitempty"`
Priority int `json:"priority,omitempty"`
}
// InitCommonConfigInputDetail ...
func InitCommonConfigInputDetail(detail *CommonConfigInputDetail) {
detail.LocalStorage = true
detail.EnableTag = true
detail.MaxSendRate = -1
detail.MergeType = MergeTypeTopic
}
// AddNecessaryInputConfigField ...
func AddNecessaryInputConfigField(inputConfigDetail map[string]interface{}) {
if _, ok := inputConfigDetail["localStorage"]; !ok {
inputConfigDetail["localStorage"] = true
}
if _, ok := inputConfigDetail["enableTag"]; !ok {
inputConfigDetail["enableTag"] = true
}
if _, ok := inputConfigDetail["maxSendRate"]; !ok {
inputConfigDetail["maxSendRate"] = -1
}
if _, ok := inputConfigDetail["mergeType"]; !ok {
inputConfigDetail["mergeType"] = MergeTypeTopic
}
if logTypeInterface, ok := inputConfigDetail["logType"]; ok {
if logType, ok := logTypeInterface.(string); ok {
AddNecessaryLocalFileInputConfigField(inputConfigDetail)
switch logType {
case LogFileTypeApsaraLog:
AddNecessaryApsaraLogInputConfigField(inputConfigDetail)
case LogFileTypeRegexLog:
AddNecessaryRegexLogInputConfigField(inputConfigDetail)
case LogFileTypeJSONLog:
AddNecessaryJSONLogInputConfigField(inputConfigDetail)
case LogFileTypeDelimiterLog:
AddNecessaryDelimiterLogInputConfigField(inputConfigDetail)
}
}
}
}
// UpdateInputConfigField ...
func UpdateInputConfigField(detail InputDetailInterface, key string, val interface{}) error {
if mapVal, ok := detail.(map[string]interface{}); ok {
if _, ok := mapVal[key]; !ok {
return NoConfigFieldError
}
mapVal[key] = val
return nil
}
return InvalidTypeError
}
// OutputDetail defines output
type OutputDetail struct {
ProjectName string `json:"projectName"`
LogStoreName string `json:"logstoreName"`
}
// InputDetailInterface all input detail's interface
type InputDetailInterface interface {
}
// LogConfig defines log config
type LogConfig struct {
Name string `json:"configName"`
LogSample string `json:"logSample"`
InputType string `json:"inputType"` // syslog plugin file
InputDetail InputDetailInterface `json:"inputDetail"`
OutputType string `json:"outputType"`
OutputDetail OutputDetail `json:"outputDetail"`
CreateTime uint32 `json:"createTime,omitempty`
LastModifyTime uint32 `json:"lastModifyTime,omitempty"`
}