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
|
{
"configs": {
"dmaap": {
"dmaapConsumerConfiguration": {
"consumerGroup": "notification",
"consumerId": "1",
"dmaapContentType": "application/json",
"dmaapHostName": "localhost",
"dmaapPortNumber": 3904,
"dmaapProtocol": "http",
"dmaapTopicName": "/events/unauthenticated.VES_NOTIFICATION_OUTPUT",
"dmaapUserName": "admin",
"dmaapUserPassword": "admin",
"messageLimit": 1000,
"timeoutMS": 1000
},
"dmaapProducerConfiguration": {
"dmaapContentType": "application/octet-stream",
"dmaapHostName": "localhost",
"dmaapPortNumber": 3905,
"dmaapProtocol": "http",
"dmaapTopicName": "/events/unauthenticated.VES_NOTIFICATION_OUTPUT",
"dmaapUserName": "admin",
"dmaapUserPassword": "admin"
}
}
}
}
|