From c22eae51c6ab2d95b91fc1a135fff1a51de588b3 Mon Sep 17 00:00:00 2001 From: snoop Date: Wed, 30 Nov 2016 13:51:35 +0900 Subject: [PATCH] fixed central url --- events/event.go | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/events/event.go b/events/event.go index 080b7dc..f74c261 100644 --- a/events/event.go +++ b/events/event.go @@ -7,18 +7,18 @@ const ( const ( COLLECTOR_INSTALL = "/_api/collector/event/status/install" - COLLECTOR_INIT = "/_api/collector/event/status/initialize" - COLLECTOR_START = "/_api/collector/event/status/start" - COLLECTOR_STOP = "/_api/collector/event/status/stop" - DISCOVERY_START = "/_api/collector/discovery/event/status/start" - DISCOVERY_END = "/_api/collector/discovery/event/status/end" - HOST_START = "/_api/collector/discovery/event/host/status/start" - HOST_FOUND = "/_api/collector/discovery/event/host/status/found" - HOST_END = "/_api/collector/discovery/event/host/status/end" - PORT_START = "/_api/collector/discovery/event/port/status/start" - PORT_FOUND = "/_api/collector/discovery/event/port/status/found" - PORT_END = "/_api/collector/discovery/event/port/status/end" - SERVICE_END = "/_api/collector/discovery/event/service/status/end" + COLLECTOR_INIT = "/_api/collector/event/status/initialize" + COLLECTOR_START = "/_api/collector/event/status/start" + COLLECTOR_STOP = "/_api/collector/event/status/stop" + DISCOVERY_START = "/_api/collector/event/discovery/status/start" + DISCOVERY_END = "/_api/collector/event/discovery/status/end" + HOST_START = "/_api/collector/event/discovery/host/status/start" + HOST_FOUND = "/_api/collector/event/discovery/host/status/found" + HOST_END = "/_api/collector/event/discovery/host/status/end" + PORT_START = "/_api/collector/event/discovery/port/status/start" + PORT_FOUND = "/_api/collector/event/discovery/port/status/found" + PORT_END = "/_api/collector/event/discovery/port/status/end" + SERVICE_END = "/_api/collector/event/discovery/service/status/end" ) type URLMaker interface {