From e9220923d2a13fa787f2f2f7b8bedc60cc9b2324 Mon Sep 17 00:00:00 2001 From: pbiniek Date: Wed, 27 Feb 2019 23:31:15 +0100 Subject: Added JSON config file format utils Change-Id: I97fdd72324495b4c838e44c306cbcacac6b11bc1 Signed-off-by: Pawel Biniek Issue-ID: DCAEGEN2-1323 --- .../src/test/resources/sampleConfig.json | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 sources/hv-collector-main/src/test/resources/sampleConfig.json (limited to 'sources/hv-collector-main/src/test/resources/sampleConfig.json') diff --git a/sources/hv-collector-main/src/test/resources/sampleConfig.json b/sources/hv-collector-main/src/test/resources/sampleConfig.json new file mode 100644 index 00000000..b64df05a --- /dev/null +++ b/sources/hv-collector-main/src/test/resources/sampleConfig.json @@ -0,0 +1,35 @@ +{ + "server" : { + "healthCheckApiPort" : 5000, + "listenPort" : 6000, + "idleTimeoutSec" : 1200, + "maximumPayloadSizeBytes" : 512000, + "dummyMode" : false + }, + "cbs" : { + "firstRequestDelaySec": 7, + "requestIntervalSec": 900 + }, + "security" : { + "sslDisable": false, + "keys": { + "keyStoreFile": "test.ks.pkcs12", + "keyStorePassword": "changeMe", + "trustStoreFile": "trust.ks.pkcs12", + "trustStorePassword": "changeMeToo" + } + }, + "kafka" : { + "kafkaServers": [ + "192.168.255.1:5005", + "192.168.255.1:5006" + ], + "routing": [ + { + "fromDomain": "perf3gpp", + "toTopic": "HV_VES_PERF3GPP" + } + ] + }, + "logLevel" : "ERROR" +} \ No newline at end of file -- cgit 1.2.3-korg