aboutsummaryrefslogtreecommitdiffstats
path: root/sources/hv-collector-main/src/test/resources/sampleConfig.json
diff options
context:
space:
mode:
authorpbiniek <pawel.biniek@nokia.com>2019-02-27 23:31:15 +0100
committerpbiniek <pawel.biniek@nokia.com>2019-03-11 12:43:48 +0100
commite9220923d2a13fa787f2f2f7b8bedc60cc9b2324 (patch)
tree9d8b4e9a5ec6da712a2d76b6897c9f66e79e2c44 /sources/hv-collector-main/src/test/resources/sampleConfig.json
parentf938e8a87a33f8db78115a92f5130d6296171c62 (diff)
Added JSON config file format utils
Change-Id: I97fdd72324495b4c838e44c306cbcacac6b11bc1 Signed-off-by: Pawel Biniek <pawel.biniek@nokia.com> Issue-ID: DCAEGEN2-1323
Diffstat (limited to 'sources/hv-collector-main/src/test/resources/sampleConfig.json')
-rw-r--r--sources/hv-collector-main/src/test/resources/sampleConfig.json35
1 files changed, 35 insertions, 0 deletions
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