-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.json
51 lines (46 loc) · 1.11 KB
/
config.json
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
{
"filter_config": {
"EventFilter": {
"ssh": "high",
"unknown": "critical"
}
},
"ACTIVE_FILTERS": [
"skunky.filters.event:EventFilter"
],
"auditor_config": {
"CloudwatchLogsAuditor": {
"event": true
}
},
"ACTIVE_AUDITORS": [
"skunky.auditors.cloudwatchlogs:CloudwatchLogsAuditor"
],
"logging": {
"version": 1,
"disable_existing_loggers": "False",
"formatters": {
"standard": {
"format": "%(asctime)s %(levelname)s: %(message)s [in %(pathname)s:%(lineno)d]"
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"level": "INFO",
"formatter": "standard",
"stream": "ext://sys.stdout"
}
},
"loggers": {
"skunky": {
"handlers": ["console"],
"level": "DEBUG"
}
}
},
"tag": false,
"ttl_time": 2592000,
"time_run": 285,
"region": "us-west-2"
}