Event Handlers
Serf's true power and flexibility comes in the form of event handlers: scripts that are executed in response to various events that can occur related to the Serf cluster. Serf invokes events related to membership changes (when a node comes online or goes offline) as well as custom events.
Event handlers can be any executable, including piped executables (such as awk '{print $2}' | grep foo
, since event handlers are invoked within the context of a shell. The event handler is executed anytime an event occurs and are expected to exit within a reasonable amount of time.
Inputs and Parameters
Every time an event handler is invoked, Serf sets some environmental variables:
SERF_EVENT
is the event type that is occuring. This will be one ofmember-join
,member-leave
,member-failed
, oruser
.SERF_SELF_NAME
is the name of the node that is executing the event handler.SERF_SELF_ROLE
is the role of the node that is executing the event handler.SERF_USER_EVENT
is the name of the user event type ifSERF_EVENT
is "user".SERF_USER_LTIME
is theLamportTime
of the user event ifSERF_EVENT
is "user".
In addition to these environmental variables, the data for an event is passed in via stdin. The format of the data is dependent on the event type.
Membership Event Data
For membership related events (member-join
, member-leave
, and member-failed
), stdin is the list of members that participated in that event. Each member is separated by a newline and each field about the member is separated by whitespace. The fields of a membership event are name, address, then role. For example:
mitchellh.local 127.0.0.1 web
User Event Data
For user events, stdin is the payload (if any) of the user event.
Specifying Event Handlers
Event handlers are specified using the -event-handler
flag for serf agent
. This flag can be specified multiple times for multiple event handlers, in which case each event handler will be executed.
Event handlers can also be filtered by event type. By default, the event handler will be invoked for any event which may occur. But you can restrict the events the event handler is invoked for by using a simple syntax of type=script
. Below are all the available ways this syntax can be used to filter an event handler:
foo.sh
- The script "foo.sh" will be invoked for any/every event.member-join=foo.sh
- The script "foo.sh" will only be invoked for the "member-join" event.member-join,member-leave=foo.sh
- The script "foo.sh" will be invoked for either member-join or member-leave events. Any combination of events may be specified in this way.user=foo.sh
- The script "foo.sh" will be invoked for all user events.user:deploy=foo.sh
- The script "foo.sh" will be invoked only for "deploy" user events.