diff options
Diffstat (limited to 'development/bin/consul.sh')
-rwxr-xr-x | development/bin/consul.sh | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/development/bin/consul.sh b/development/bin/consul.sh index 39f0bdef..2a6bc0f5 100755 --- a/development/bin/consul.sh +++ b/development/bin/consul.sh @@ -59,13 +59,16 @@ shift $((OPTIND-1)) DOMAIN=${1:-perf3gpp} TOPIC=${2:-HV_VES_PERF3GPP} -CONFIGURATION=" -{ - \"collector.routing\": - [{ - \"fromDomain\": \"${DOMAIN}\", - \"toTopic\": \"${TOPIC}\" - }] +CONFIGURATION="{ + "streams_publishes": { + "${DOMAIN}": { + "type": "kafka", + "kafka_info": { + "bootstrap_servers": "message-router-kafka:9092", + "topic_name": "${TOPIC}" + } + } + } }" CONFIGURATION_ENDPOINT=localhost:8500/v1/kv/veshv-config |