diff options
author | ChuanyuChen <chenchuanyu@huawei.com> | 2023-04-10 10:37:47 +0800 |
---|---|---|
committer | ChuanyuChen <chenchuanyu@huawei.com> | 2023-04-10 10:37:47 +0800 |
commit | 107be6ba14cd4f6822c2e2e058a9f0880bd9e3c9 (patch) | |
tree | 20f89cbe8bb73e4b96ad3599653c2f6af43fff09 /intentanalysis/src/main/resources | |
parent | cd69d6ff83ee0d06683031f04ed71c692b6bffaa (diff) |
Support Dmaap Message Util
Support Dmaap Message Util
Issue-ID: USECASEUI-794
Signed-off-by: ChuanyuChen <chenchuanyu@huawei.com>
Change-Id: If54a17f72370667444fc87129d8fdc0958be8692
Diffstat (limited to 'intentanalysis/src/main/resources')
-rw-r--r-- | intentanalysis/src/main/resources/dmaapConfig/dcae_dmaap_config.json | 20 | ||||
-rw-r--r-- | intentanalysis/src/main/resources/dmaapConfig/policy_dmaap_config.json | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/intentanalysis/src/main/resources/dmaapConfig/dcae_dmaap_config.json b/intentanalysis/src/main/resources/dmaapConfig/dcae_dmaap_config.json new file mode 100644 index 0000000..d22e843 --- /dev/null +++ b/intentanalysis/src/main/resources/dmaapConfig/dcae_dmaap_config.json @@ -0,0 +1,20 @@ +{ + "dcae_subscriber":{ + "type":"message_router", + "aaf_username": null, + "aaf_password": null, + "api_key" : null, + "api_secret" : null, + "servers" : ["message-router:3904"], + "consumer_group" : "intent_analysis_dcaeevent", + "consumer_instance" : "intent_analysis_dcaeevent_1", + "fetch_timeout" : 15000, + "fetch_limit" : 100, + "dmaap_info":{ + "topic_url":"http://message-router:3904/events/INTENT-EVENT", + "client_role":"org.onap.uui.intentanalysisSub", + "location":"onap", + "client_id":"intent-analysis-1" + } + } +} diff --git a/intentanalysis/src/main/resources/dmaapConfig/policy_dmaap_config.json b/intentanalysis/src/main/resources/dmaapConfig/policy_dmaap_config.json new file mode 100644 index 0000000..0ec440f --- /dev/null +++ b/intentanalysis/src/main/resources/dmaapConfig/policy_dmaap_config.json @@ -0,0 +1,20 @@ +{ + "policy_subscriber":{ + "type":"message_router", + "aaf_username": null, + "aaf_password": null, + "api_key" : null, + "api_secret" : null, + "servers" : ["message-router:3904"], + "consumer_group" : "intent_analysis_policyevent", + "consumer_instance" : "intent_analysis_policyevent_1", + "fetch_timeout" : 15000, + "fetch_limit" : 100, + "dmaap_info":{ + "topic_url":"http://message-router:3904/events/INTENT-EVENT", + "client_role":"org.onap.uui.intentanalysisSub", + "location":"onap", + "client_id":"intent-analysis-1" + } + } +} |