Add telemetry during topology synchronization
StackState Self-hosted v5.1.x
Overview
Topology imported to StackState using a StackPack or other integration is described as synchronized topology. Synchronized topology data arriving in StackState from external systems is normalized using a template. The template defines how a topology element should be built in StackState, such as the layer it should belong to, the health checks that should be added and any telemetry streams that should be attached to it.
The StackPacks shipped with StackState already include templates with the relevant telemetry streams for each imported element type. If you create your own integrations or have additional telemetry streams that you would like to link with imported components, you can edit the template used during synchronization to automatically add these to imported topology.
Add telemetry streams to the synchronization template
If you want to add a telemetry stream to all topology elements imported by a specific integration, you can edit its template function to include the additional telemetry stream.
Edit a template function with the template editor
The StackState template editor allows you to customize how StackState builds topology elements from imported topology data. You can open the template editor from the StackState UI right panel details tab when detailed information is displayed about an element - Component details or Direct relation details depending on the element type that you selected.
Note that you are editing the template for the synchronization that imported the element, not the template for this specific element. Changes saved here will be applied to all future synchronizations for all elements built using this template.
Select an element to open detailed information about it in the right panel details tab - Component details or Direct relation details depending on the element type that you selected.
Click ... and select Edit template.
The template editor will open for the template that was used to create the selected element. Three sets of information are displayed:
input parameters - the raw data imported for a specific element.
template function - the template function used by the synchronization that imported the element. When an element is imported, the synchronization will run the template function with input parameters. This outputs a structured JSON string, which is used to build the component properties that you see in the StackState UI right panel details tab - Component details.
Result - Click PREVIEW to see the output of the template function when it runs with the specified input parameters. You can choose to view the result either in JSON format or as it will appear in the StackState UI component Properties.
You can edit the template function to change how the topology element is built in StackState, for example to add a telemetry stream to every element imported with this template.
Note that you are editing the template for the synchronization that imported the element, not the template for this specific element. Changes saved here will be applied to all future synchronizations for all elements built using this template.
Add a telemetry stream to a template function
The telemetry streams attached to topology elements during synchronization are configured in the template function as streams: []
. To add a telemetry stream to a component the fields described below are required. The most important part of the stream configuration is the query
, this represents the conditions used to filter the stream:
For example, a CloudWatch metric stream:
See also
Last updated