summaryrefslogtreecommitdiffstats
path: root/tools/config_local.json
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-06-25 09:06:11 +0200
committerZebek Bogumil <bogumil.zebek@nokia.com>2020-07-02 08:40:33 +0200
commitdfc831bbb63ca3f42dc78135bfcca66b07cd5db2 (patch)
tree025d49791fad181265da02b4cc392879e9a48a02 /tools/config_local.json
parente23d317a7c5ab6f0ce61054750c95748c1f26fef (diff)
Upgrade java from 8 to 113.5.0
Issue-ID: DCAEGEN2-2287 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: I1a80ac133798ec6fbd96696aaa292244b1feec05
Diffstat (limited to 'tools/config_local.json')
-rw-r--r--tools/config_local.json76
1 files changed, 76 insertions, 0 deletions
diff --git a/tools/config_local.json b/tools/config_local.json
new file mode 100644
index 0000000..3abe459
--- /dev/null
+++ b/tools/config_local.json
@@ -0,0 +1,76 @@
+{
+ "database": {
+ "driverClass": "org.postgresql.Driver",
+ "user": "dcae_inv",
+ "password": "onapdemodb",
+ "url": "jdbc:postgresql://10.183.35.177:32185/dcae_inventory",
+ "properties": {
+ "charSet": "UTF-8"
+ },
+ "maxWaitForConnection": "1s",
+ "validationQuery": "/* MyService Health Check */ SELECT 1",
+ "minSize": 10,
+ "maxSize": 20,
+ "initialSize": 10,
+ "checkConnectionWhileIdle": false,
+ "evictionInterval": "10s",
+ "minIdleTime": "1 minute"
+ },
+ "databusControllerConnection": {
+ "host": "databus-controller-hostname",
+ "port": 8443,
+ "mechId": null,
+ "password": null,
+ "required": false
+ },
+ "httpClient": {
+ "minThreads": 1,
+ "maxThreads": 128,
+ "gzipEnabled": false,
+ "gzipEnabledForRequests": false,
+ "timeout": "5000milliseconds",
+ "connectionTimeout": "5000milliseconds"
+ },
+ "server": {
+ "applicationConnectors": [
+ {
+ "type": "http",
+ "port": 9080
+ }
+ ],
+ "adminConnectors": [
+ {
+ "type": "http",
+ "port": 9081
+ }
+ ],
+ "requestLog": {
+ "appenders": [
+ {
+ "type": "file",
+ "currentLogFilename": "logs/request.log",
+ "threshold": "ALL",
+ "archive": true,
+ "archivedLogFilenamePattern": "logs/request.%i.log.gz",
+ "archivedFileCount": 2,
+ "maxFileSize": "10MB"
+ }
+ ]
+ }
+ },
+ "logging": {
+ "level": "INFO",
+ "appenders": [
+ {
+ "type": "file",
+ "archive": true,
+ "timeZone": "UTC",
+ "currentLogFilename": "logs/audit.log",
+ "archivedLogFilenamePattern": "logs/audit-%i.log.gz",
+ "archivedFileCount": 2,
+ "maxFileSize": "100MB",
+ "logFormat": "%d{yyyy-MM-dd'T'HH:mm:ss.SSS+00:00}|%d{yyyy-MM-dd'T'HH:mm:ss.SSS+00:00}|NULL|UNKNOWN|%thread||inventory||COMPLETE|0|OK||INFO|||||||||||||%-5level:%c: %m%n"
+ }
+ ]
+ }
+}