summaryrefslogtreecommitdiffstats
path: root/3rd_party
diff options
context:
space:
mode:
authorbryan <bryan.sullivan@att.com>2017-03-07 06:32:19 -0800
committerbryan <bryan.sullivan@att.com>2017-03-07 06:32:19 -0800
commit04b8301a35690951061fdf344d10194c24631b2f (patch)
tree8e7574db2e478659bc29b0730e93065f689bf465 /3rd_party
parent5649793d2037d6f26211be4035e28842ebb3e737 (diff)
Update to VES API v3 URL
JIRA: VES-1 Change-Id: I76679e85cb769b87e5137b8ad2b56930c68b31fb Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
Diffstat (limited to '3rd_party')
-rw-r--r--3rd_party/collectd-ves-plugin/ves_plugin/ves_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rd_party/collectd-ves-plugin/ves_plugin/ves_plugin.py b/3rd_party/collectd-ves-plugin/ves_plugin/ves_plugin.py
index a9715ad7..3e300893 100644
--- a/3rd_party/collectd-ves-plugin/ves_plugin/ves_plugin.py
+++ b/3rd_party/collectd-ves-plugin/ves_plugin/ves_plugin.py
@@ -277,7 +277,7 @@ class VESPlugin(object):
def event_send(self, event):
"""Send event to VES"""
- server_url = "http{}://{}:{}/{}eventListener/v1{}".format(
+ server_url = "http{}://{}:{}/{}eventListener/v3{}".format(
's' if self.__plugin_config['UseHttps'] else '', self.__plugin_config['Domain'],
int(self.__plugin_config['Port']), '{}/'.format(
'/{}'.format(self.__plugin_config['Path'])) if (len(self.__plugin_config['Path']) > 0) else '',