This commit is contained in:
jackdaw 2016-11-28 15:02:29 +09:00
parent 5da9afefbc
commit 712ebc4587

View File

@ -7,19 +7,15 @@ const (
const ( const (
COLLECTOR_INSTALL = "/_api/collector/event/status/install" COLLECTOR_INSTALL = "/_api/collector/event/status/install"
DISCOVERY_START = "/_api/collector/discovery/event/status/start"
DISCOVERY_START = "/_api/collector/discovery/event/status/start" DISCOVERY_END = "/_api/collector/discovery/event/status/end"
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_START = "/_api/collector/discovery/event/host/status/start" HOST_END = "/_api/collector/discovery/event/host/status/end"
HOST_FOUND = "/_api/collector/discovery/event/host/status/found" PORT_START = "/_api/collector/discovery/event/port/status/start"
HOST_END = "/_api/collector/discovery/event/host/status/end" PORT_FOUND = "/_api/collector/discovery/event/port/status/found"
PORT_END = "/_api/collector/discovery/event/port/status/end"
PORT_START = "/_api/collector/discovery/event/port/status/start" SERVICE_END = "/_api/collector/discovery/event/service/status/end"
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"
) )
type URLMaker interface { type URLMaker interface {