diff options
author | 2019-02-27 01:28:52 +0000 | |
---|---|---|
committer | 2019-02-27 01:28:52 +0000 | |
commit | 2a76952ed2c30c0a8f7c8c6dafdad74ecd416b08 (patch) | |
tree | 2eb52692a0bbacc506a7dcbba8332db4de6ab31c /veslibrary/ves_clibrary/VESreporting_vFW/go-client.sh | |
parent | 67b5a83f516438d5f6346cf6da655a9b2e18a2aa (diff) | |
parent | e987dff7d71bf2255646df58bf22fa603f8d3935 (diff) |
Merge "VES 7.1 C Lib/Agent Enhancements"
Diffstat (limited to 'veslibrary/ves_clibrary/VESreporting_vFW/go-client.sh')
-rwxr-xr-x | veslibrary/ves_clibrary/VESreporting_vFW/go-client.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/veslibrary/ves_clibrary/VESreporting_vFW/go-client.sh b/veslibrary/ves_clibrary/VESreporting_vFW/go-client.sh index b2b3a08..0aaed85 100755 --- a/veslibrary/ves_clibrary/VESreporting_vFW/go-client.sh +++ b/veslibrary/ves_clibrary/VESreporting_vFW/go-client.sh @@ -1,6 +1,12 @@ #!/bin/bash - export LD_LIBRARY_PATH="/opt/VES/evel/evel-library/libs/x86_64/" + +#Usage for 2 collectors: +#./vpp_measurement_reporter <FQDN>|<IP address> <port> <FQDN>|<IP address> <port> +# Usage for a collector: +#./vpp_measurement_reporter <FQDN>|<IP address> <port> + DCAE_COLLECTOR_IP=$(cat /opt/config/dcae_collector_ip.txt) DCAE_COLLECTOR_PORT=$(cat /opt/config/dcae_collector_port.txt) ./vpp_measurement_reporter $DCAE_COLLECTOR_IP $DCAE_COLLECTOR_PORT + |