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
|
{
"wservice_port" : 25577,
"consul_url" : "http://consul:8500",
"consul_timeout_in_secs" : 60,
"pdp_api_version" : null,
"policy_handler" : {
"system" : "policy_handler",
"tls" : {
"cert_directory" : "etc/tls/certs/",
"cacert" : "cacert.pem"
}
},
"logging" : {
"version": 1,
"disable_existing_loggers": false,
"formatters": {
"local": {
"format": "%(asctime)s.%(msecs)03d %(levelname)+8s %(threadName)s %(name)s.%(funcName)s: %(message)s",
"datefmt": "%Y%m%d_%H%M%S"
}
},
"handlers": {
"file": {
"class": "logging.handlers.RotatingFileHandler",
"formatter": "local",
"filename" : "logs/policy_handler.log",
"level": "DEBUG",
"maxBytes": 200000000,
"backupCount": 5,
"delay": true
}
},
"loggers": {
"policy_handler" : {
"handlers": ["file"],
"propagate":false
}
},
"root": {
"handlers": ["file"]
}
}
}
|