package command
|
|
import (
|
"flag"
|
"fmt"
|
"strings"
|
|
"github.com/mitchellh/cli"
|
)
|
|
// EventCommand is a Command implementation that queries a running
|
// Serf agent what members are part of the cluster currently.
|
type EventCommand struct {
|
Ui cli.Ui
|
}
|
|
var _ cli.Command = &EventCommand{}
|
|
func (c *EventCommand) Help() string {
|
helpText := `
|
Usage: serf event [options] name payload
|
|
Dispatches a custom event across the Serf cluster.
|
|
Options:
|
|
-coalesce=true/false Whether this event can be coalesced. This means
|
that repeated events of the same name within a
|
short period of time are ignored, except the last
|
one received. Default is true.
|
-rpc-addr=127.0.0.1:7373 RPC address of the Serf agent.
|
-rpc-auth="" RPC auth token of the Serf agent.
|
`
|
return strings.TrimSpace(helpText)
|
}
|
|
func (c *EventCommand) Run(args []string) int {
|
var coalesce bool
|
|
cmdFlags := flag.NewFlagSet("event", flag.ContinueOnError)
|
cmdFlags.Usage = func() { c.Ui.Output(c.Help()) }
|
cmdFlags.BoolVar(&coalesce, "coalesce", true, "coalesce")
|
rpcAddr := RPCAddrFlag(cmdFlags)
|
rpcAuth := RPCAuthFlag(cmdFlags)
|
if err := cmdFlags.Parse(args); err != nil {
|
return 1
|
}
|
|
args = cmdFlags.Args()
|
if len(args) < 1 {
|
c.Ui.Error("An event name must be specified.")
|
c.Ui.Error("")
|
c.Ui.Error(c.Help())
|
return 1
|
} else if len(args) > 2 {
|
c.Ui.Error("Too many command line arguments. Only a name and payload must be specified.")
|
c.Ui.Error("")
|
c.Ui.Error(c.Help())
|
return 1
|
}
|
|
event := args[0]
|
var payload []byte
|
if len(args) == 2 {
|
payload = []byte(args[1])
|
}
|
|
client, err := RPCClient(*rpcAddr, *rpcAuth)
|
if err != nil {
|
c.Ui.Error(fmt.Sprintf("Error connecting to Serf agent: %s", err))
|
return 1
|
}
|
defer client.Close()
|
|
if err := client.UserEvent(event, payload, coalesce); err != nil {
|
c.Ui.Error(fmt.Sprintf("Error sending event: %s", err))
|
return 1
|
}
|
|
c.Ui.Output(fmt.Sprintf("Event '%s' dispatched! Coalescing enabled: %#v",
|
event, coalesce))
|
return 0
|
}
|
|
func (c *EventCommand) Synopsis() string {
|
return "Send a custom event through the Serf cluster"
|
}
|