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
|
{
"configs": {
"dmaap": {
"dmaapConsumerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 2222,
"dmaapTopicName": "/events/unauthenticated.VES_NOTIFICATION_OUTPUT",
"dmaapProtocol": "http",
"dmaapUserName": "",
"dmaapUserPassword": "",
"dmaapContentType": "application/json",
"consumerId": "C12",
"consumerGroup": "OpenDcae-c12",
"timeoutMs": -1,
"messageLimit": 1
},
"dmaapProducerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 3907,
"dmaapTopicName": "publish",
"dmaapProtocol": "https",
"dmaapUserName": "dradmin",
"dmaapUserPassword": "dradmin",
"dmaapContentType": "application/octet-stream"
}
},
"ftp": {
"ftpesConfiguration": {
"keyCert": "config/ftpKey.jks",
"keyPassword": "secret",
"trustedCA": "config/cacerts",
"trustedCAPassword": "secret"
}
},
"security": {
"trustStorePath" : "change it",
"trustStorePasswordPath" : "change it",
"keyStorePath" : "change it",
"keyStorePasswordPath" : "change it",
"enableDmaapCertAuth" : "false"
}
}
}
|