Static Topology
StackState Self-hosted v5.0.x
This page describes StackState version 5.0.
Overview
The Static Topology StackPack reads topology information from an external CSV file and synchronizes the data with StackState.
Static Topology is a StackState curated integration.
Setup
Prerequisites
To set up the StackState Static Topology integration, you need to have:
A correctly formatted component CSV file and relation CSV file.
StackState Agent V2 installed on a machine that can connect to StackState.
Install
Install the Static Topology StackPack from the StackState UI StackPacks > Integrations screen. You will need to provide the following parameters:
Path to component CSV file - the CSV file to read component data from.
Path to relation CSV file - the CSV file to read relation data from.
The CSV files should follow the Static Topology CSV file specification and be available in a location where StackState Agent is able to read them, for example /etc/stackstate-agent/conf.d/
. StackState Agent V2 runs as system user/group stackstate-agent
.
Configure
To enable the Static Topology check and begin collecting topology data from the configured CSV files, add the following configuration to StackState Agent V2:
Example Agent configuration file for Static Topology: conf.yaml.example (github.com)
Copy the example Agent configuration file
mv /etc/stackstate-agent/conf.d/static_topology.d/conf.yaml.example /etc/stackstate-agent/conf.d/static_topology.d/conf.yaml
.Edit the copied Agent configuration file
/etc/stackstate-agent/conf.d/static_topology.d/conf.yaml
to add details of the CSV files:components_file - Path to the component CSV file to read component data from. The same as entered when the StackPack was installed.
relations_file - Path to the relation CSV file to read relation data from. The same as entered when the StackPack was installed.
delimiter - The delimiter used in the CSV files.
You can also add optional configuration:
tags - Tags to add to the imported topology elements.
Verify that the files could be read successfully using the command:
5.Restart the StackState Agent(s) to apply the configuration changes. 6.Once the Agent has restarted, wait for the Agent to collect data from the CSV files and send it to StackState.
Status
Execute the info command and verify that the integration check has passed. The output of the command should contain a section similar to the following:
CSV file specification
Static topology is read from two CSV files:
A CSV file containing components
A CSV file containing relations
Both CSV files are read to form a topology. The CSV file for components and relations have different requirements, these are described on this page. Both files require a CSV header.
Component CSV file
The component CSV file contains details of components. The file should contain a header with the following fields:
id
- The component's unique identifier.name
- The component's name.type
- The component type. For example, VM, datastore or rack.domain
(Optional) - The StackState domain where the component should be visualized.layer
(Optional) - The StackState layer in where the component should be visualized.environment
(Optional) - The StackState environment in where the component should be visualized.All other fields will be added as metadata on the component
Headers are case-sensitive.
Relation CSV file
The relation CSV file contains details of relations between components. The file should contain a header with the following fields:
sourceid
- The identifier of the component to create a relation from. This must match the componentid
in the component CSV file.targetid
- The identifier of the component to create a relation to. This must identifier has to match the componentid
in the component CSV file.type
- The type of a relation. For example, 'uses' or 'depends on'.
Headers are case-sensitive.
Setup
Configuration
Configure the Agent to read CSV topology files. Edit
conf.d/static_topology.d/conf.yaml
:Static topology from file
init_config:
instances:
type: csv components_file: /path/to/components.csv relations_file: /path/to/relations.csv delimiter: ';'
tags:
- optional_tag1
- optional_tag2
Restart the Agent
Configuration Options
type
- Set tocsv
for parsing CSV typed filescomponents_file
- Absolute path to CSV file containing topology componentsrelations_file
- Absolute path to CSV file containing topology relationsdelimiter
- CSV field delimitertags
(Optional) - StackState labels to add to each component and relation read from the CSV files.
Validation
Execute the info command and verify that the integration check has passed. The output of the command should contain a section similar to the following:
Checks
[...]
static_topology
instance #0 [OK]
Release notes
StaticTopology StackPack v2.3.2 (2021-05-12)
Bugfix: Use the domain, layer, environment and type coming from data in component template
Last updated