.
This commit is contained in:
parent
a7a2d60954
commit
efd575b325
|
@ -7,7 +7,11 @@ const (
|
|||
|
||||
const (
|
||||
COLLECTOR_INSTALL = "http://localhost:8080/_api/collector/event/status/install"
|
||||
SERVICE_END = "http://localhost:8080/_api/collector/event/service/status/end"
|
||||
|
||||
PORT_START = "http://localhost:8080/_api/collector/event/port/status/start"
|
||||
PORT_FOUND = "http://localhost:8080/_api/collector/event/port/status/found"
|
||||
PORT_END = "http://localhost:8080/_api/collector/event/port/status/end"
|
||||
SERVICE_END = "http://localhost:8080/_api/collector/event/service/status/end"
|
||||
)
|
||||
|
||||
type URLMaker interface {
|
||||
|
|
|
@ -1 +1,17 @@
|
|||
package events
|
||||
|
||||
type PortStartEvent struct {
|
||||
Zone int64
|
||||
PortCount int
|
||||
}
|
||||
|
||||
func (i PortStartEvent) GetUrl() string {
|
||||
return SERVICE_END
|
||||
}
|
||||
|
||||
func NewPortStartEvent(zone int64, portCount uint16) *CollectorInstallEvent {
|
||||
return &PortStartEvent{
|
||||
Zone: zone,
|
||||
PortCount: portCount,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user