Push telemetry to StackState over HTTP
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.
Overview
StackState can either pull telemetry from a data source or can receive pushed telemetry. Pushed telemetry is stored by StackState, while pulled telemetry is not. Pushed telemetry is stored for the duration of the configured retention period. This page describes how telemetry can be pushed.
There are several ways to send telemetry to StackState. A large number of integrations are provided out of the box that may help you get started. If there is no out of the box integration you can send telemetry to StackState using either HTTP or the StackState CLI.
Send telemetry over HTTP
The StackState receiver API is responsible for receiving both telemetry and topology. By default, the receiver API is hosted at:
Both the baseUrl
and API_KEY
are set during StackState installation, for details see:
Telemetry is sent to the receiver API via HTTP POST and has a common JSON object for all messages. One message can contain multiple metrics and multiple events.
Depending on your StackState configuration, received metrics or events that are too old will be ignored.
Metrics
Metrics can be sent to the StackState receiver API using the "metrics"
property of the common JSON object.
Metric JSON
Every metric has the following details:
name - The metric name. Must not start with any of the following prefixes:
host
,labels
,name
,tags
,timeReceived
,timestamp
,tags
orvalues
.timestamp - The epoch timestamp of the metric.
value - The value of the metric.
hostname - The host this metric is from.
type - The type of metric. Can be
gauge
,count
,rate
,counter
orraw
.tags - Optional. A list of key/value tags to associate with the metric.
The timestamp
and value
are used to plot the metric as a time series. The name
and tags
can be used to define a metric stream in StackState.
Send metrics to StackState
Multiple metrics can be sent in one JSON message via HTTP POST. For example:
You can also send metrics to StackState using the StackState CLI metric send
command.
Events
Events can be sent to the StackState receiver API using the "events"
property of the common JSON object.
All events in StackState relate to a topology element or elements. Any of the event properties can be used to define an event stream in StackState.
Event JSON
Events have the following details:
An event name. this must not start with any of the following prefixes:
eventType
,host
,labels
,message
,name
,tags
,timeReceived
,timestamp
ortitle
.context - Includes details of the source system for an event:
category - The event category. Can be
Activities
,Alerts
,Anomalies
,Changes
orOthers
.element_identifiers - The identifiers for the topology element(s) the event relates to. These are used to bind the event to a topology element or elements.
source - The name of the system from which the event originates, for example AWS, Kubernetes or JIRA.
data - Optional. A list of key/value details about the event, for example a configuration version.
source_identifier - Optional. The original identifier of the event in the source system.
source_links - Optional. A list of links related to the event, for example a dashboard or the event in the source system.
event_type - Describes the event being sent. This should generally end with the suffix
Event
, for exampleConfigurationChangedEvent
,VersionChangedEvent
.msg_text - Optional. The text body of the event.
msg_title - Optional. The title of the event.
source_type_name - Optional. The source event type name.
tags - Optional. A list of key/value tags to associate with the event.
timestamp - The epoch timestamp for the event.
Send events to StackState
Multiple events can be sent in one JSON message via HTTP POST. You can also send a single event to StackState using the StackState CLI event send
command. For example:
See also
Last updated