Send event notifications

Use event handlers to send an event notification to an outside system when a component or view health state changes.

This page describes StackState version 4.2.

The StackState 4.2 version range is End of Life (EOL) and no longer supported. We encourage customers still running the 4.2 version range to upgrade to a more recent release.

Go to the documentation for the latest StackState release.

Overview

When something goes wrong within your IT environment, StackState can send event notifications to alert you or your team mates. A message can be sent in the form of an email, Slack message, mobile ping or an HTTP POST request to any URL. Event notifications can contain detailed content on the trigger event and possible root cause. This guide will help you set this up.

How an event notification is triggered

Event notifications are triggered in response to health state changes on an element or view. The health state of an element is derived from metrics and events data in the telemetry streams assigned to it, whereas the health state of a view is calculated based on the combined health state of elements within it. Propagated state changes can also be used to trigger event notifications, however, this can result in a lot of noise.

The process to trigger an event is as follows:

  1. Telemetry streams attached to an element provide metrics and events data.

  2. A health check attached to the element listens to the available telemetry streams and reports a health state based on its configured parameters.

  3. When the reported health state of an element changes, a chain of state change events are generated:

    • HealthStateChangedEvent for the element itself.

    • PropagatedStateChangedEvent for all other elements that have been impacted by the element's state change.

    • ViewStateChangedEvent for each view containing the element. Note that this event type is only generated when a view's view state configuration criteria are met.

  4. Event handlers associated with each view listen to the generated state change events and trigger the configured event notifications and actions.

Add an event handler to a view

Event handlers respond to health state change events and run event handler functions to generate event notifications and trigger automated actions. You can add an event handler to a view from the StackState UI.

  1. Select Events Settings on the left.

  2. Click ADD NEW EVENT HANDLER.

  3. Select the trigger event and event handler to run:

    • On event - the type of state change events that should trigger the event notification or automated action.

    • Run event handler - the event handler function that will run whenever the selected state change event type is generated. StackState ships with event handler functions that can send an event notification via email, Slack or SMS, or POST to an HTTP webhook. You can also create your own custom functions. Read more about event handler functions.

  4. Enter the required details, these will vary according to the event handler function you have selected.

  5. Click SAVE.

State change events

In StackState, metrics and events data flow through topology elements in telemetry streams. These telemetry streams are used by health checks to determine the health state of the element. For every change in health state, at least one state change event is generated. Event handlers can be added to a view to listen to state change events generated within the view and trigger an event notification or action when a configured threshold is passed.

The event types generated when an element state changes are described in the table below.

You can add an event handler to a view to trigger event notifications or automated actions on specific state change events.

See also

Last updated