StackState CLI
Managing StackState using the CLI.
This page describes StackState version 4.1.
The StackState 4.1 version range is End of Life (EOL) and no longer supported. We encourage customers still running the 4.1 version range to upgrade to a more recent release.
The StackState CLI can be used to configure StackState, work with data, and help with debugging problems. The CLI provides easy access to the functionality provided by the StackState API. The URLs and authentication credentials are configurable. Multiple configurations can be stored for access to different instances.
Install the StackState CLI
A standalone executable is available to run the StackState CLI on Linux and Windows. You can also run the CLI inside a Docker container on Linux, Windows or MacOS.
Linux install
A standalone executable file is available to run the StackState CLI on Linux.
Requirements:
Access to the StackState APIs.
Installation:
Download the Linux executable
sts-cli-VERSION-linux64
from https://download.stackstate.com.Rename the downloaded file to be
sts
and make it executable:(optional) Place the file under your PATH to use StackState CLI commands from anywhere on the command line.
Follow the steps below to launch the configuration wizard or manually configure the StackState CLI.
Windows install
A standalone executable file is available to run the StackState CLI on Windows.
Requirements:
Access to the StackState APIs.
Installation:
Download the executable
sts-cli-VERSION-windows.exe
from https://download.stackstate.com.Rename the downloaded file to be
sts.exe
.(optional) Place the file under your PATH to use StackState CLI commands from anywhere on the command line.
Follow the steps below to launch the configuration wizard or manually configure the StackState CLI.
Docker install (Linux, Windows, Mac)
The StackState CLI can be run inside a Docker container on Linux, Windows or MacOS. The ZIP archive provided contains scripts that help you run the CLI without needing to worry about Docker invocations.
Requirements:
Access to the StackState APIs.
Internet connection for first time run.
Installation:
Download the ZIP file
sts-cli-VERSION.zip
from https://download.stackstate.com.The ZIP archive contains the following files:
(optional) Put put the
bin
folder to your PATH to use StackState CLI commands from anywhere on the command line.Follow the steps below to manually configure the StackState CLI.
Configure the StackState CLI
To use the StackState CLI, you need to configure it with the API connection details for your StackState instance.
Linux or Windows install: A wizard will guide you through configuration or you can create the configuration file manually.
Docker install: Create the configuration file manually.
Wizard configuration (Linux and Windows install)
The binary files downloaded in the Linux and Windows install methods described above include a configuration wizard to generate the StackState CLI configuration file. The first time you run any sts
command, the StackState CLI will look for a configuration file. If no valid configuration file is found, the wizard will guide you through creating one and store it under the user's home directory.
For example:
Manual configuration
Follow the steps below to create a configuration file manually (required for Docker install).
Download the ZIP file
sts-cli-VERSION.zip
from https://download.stackstate.com. If you ran the Docker install, skip this step and use the ZIP archive you already downloaded.Copy the file
conf.d/conf.example.yaml
from the ZIP archive and put it in one of the following directories:Docker:
conf.d/
- relative to the directory where the CLI is run.
Linux or Windows:
conf.d/
- relative to the directory where the CLI is run.~/.stackstate/cli/
- relative to the user's home directory.%APPDATA%/StackState/cli/
- relative to the user's home directory.
Rename the file to be
conf.yaml
.Edit the file and add:
URLs to the StackState APIs.
Any required authentication details for the APIs.
Client details.
For example:
Multiple configurations
The conf.yaml
configuration file can hold multiple configurations. Other StackState instances can be added on the same level as the default configuration. For example:
To use the StackState CLI with a non-default instance:
Use the StackState CLI
Import and export StackState configuration
The StackState configuration is stored in StackState's graph database in so-called configuration nodes. These nodes can be inspected, imported and exported using the CLI.
You can use the sts graph export
and sts graph import
commands to export and import different types of configuration nodes from and to StackState. Nodes are stored in StackState Templated Json format.
For example:
Inspect data
All data flowing through StackState (e.g. topology, telemetry, traces, etc.) flows through so-called topics. For debugging purposes, these topics can be inspected using the CLI. This can come in handy, for example, to make sure that StackState is receiving data correctly when you write your own integrations.
For example:
Send data
You may not always want to try a new configuration on real data. First, you might want to see if it works correctly with predictable data. The CLI makes it easy to send test topology or telemetry data to StackState.
Metrics
The CLI provides some predefined settings to send metrics to StackState. Run the below command without any optional arguments to send one data point of the given value:
You can also use optional arguments to create historical data for a test metric.
Argument | Details |
| Time period. This can be in weeks |
| The bandwidth between which values will be generated. For example: |
By default, a metrics pattern is random or, when a value is provided, a flatline. This can be changed using the pattern arguments --linear
and --baseline
.
Argument | Details |
| Creates a line between the values given for |
| Creates a daily usage curve. On Saturday and Sunday, the metric is much lower than on weekdays. The min and max of the curve are set by |
| Reads a CSV file from the stdin and sends it to StackState. The content of the CSV file should be in the format |
To see all available options, use:
Events
The CLI can send events using sts events send <eventName>
It will send one event with the given name.
For help on sending events data, use:
Topology
Please refer to usage.md
in the CLI zip archive for detailed instructions.
For help on sending topology data, use:
Anomaly
The CLI provides an anomaly
command used to send anomaly data for a metric stream of a component.
You can also use the optional arguments below to create a specific anomaly.
Argument | Details |
| Anomaly duration (seconds) |
| Anomaly severity (HIGH, MEDIUM, LOW) |
| Anomaly severity score |
| Anomaly description field contents |
For help on sending anomaly data, use:
Manage StackPacks
The StackState CLI can be used to manage the StackPacks in your StackState instance.
Install a StackPack
To install a StackPack, you must first upload it to the StackState server.
For example, the open-source SAP StackPack requires the parameter sap_host during installation. This command kicks off that installation:
Upgrade a StackPack
If you want to upgrade a StackPack, first upload the new StackPack version to the StackState server, then trigger the upgrade with the following command:
Note that StackState will upgrade to the latest StackPack version available on the StackState server.
Uninstall a StackPack
Uninstall a StackPack as follows:
Scripting
It is possible to execute scripts using the StackState CLI. Use sts script
to execute a script via standard input. For example:
Note that the script provided as input must use proper quoting.
License
The StackState CLI can check your license validity and update a license key when needed, for example in case of expiration.
Note that it is not necessary to do this via the CLI. StackState will also offer this option in the UI when a license is about to expire or has expired.
Last updated