Docker
This page describes StackState v4.4.x.
The StackState 4.4 version range is End of Life (EOL) and no longer supported. We encourage customers still running the 4.4 version range to upgrade to a more recent release.
Overview
StackState Agent V2
StackState Agent V2 can run in a Docker container. The Agent collects data from the host where it is running and can be configured to integrate with external systems. Retrieved data is pushed to StackState, to work with this data the StackState Agent V2 StackPack must be installed in your StackState instance. For details of the data retrieved and available integrations, see the StackPack integration documentation.
In Docker Swarm mode, the StackState Cluster Agent can be deployed on the manager node to retrieve topology data for the cluster.
Setup
StackState Receiver API address
StackState Agent connects to the StackState Receiver API.
For StackState running on Kubernetes, the Receiver API is hosted by default at:
The baseUrl
is set during StackState installation, for details see Kubernetes install - configuration parameters.
Single container
To start a single Docker container with StackState Agent V2, run the following command:
Docker compose
To run StackState Agent V2 with Docker compose:
Add the following configuration to the compose file on each node where the Agent will run:
Run the command:
Docker swarm mode
In Docker Swarm mode, the StackState Cluster Agent can be deployed on the manager node to retrieve basic topology data (services, containers and the relations between them). To retrieve full data, StackState Agent V2 must also be deployed on each node as a Docker compose setup.
To run StackState Cluster Agent in Docker Swarm mode:
Create a file
docker-compose.yml
with the following content. Update to include details of your StackState instance:STS_API_KEY - the API Key for your StackState instance
STS_STS_URL - the URL of the StackState Receiver API
STS_CLUSTER_NAME - the name you would like to give this cluster
Run the command:
Running the StackState Cluster Agent in Docker Swarm mode will collect basic topology data from the cluster. To retrieve more data, including telemetry, StackState Agent V2 must also be installed on each node in the Swarm cluster as a Docker compose setup.
Upgrade
To upgrade StackState Agent V2 running inside a Docker container.
Stop the running container and remove it.
Run the container using the instructions provided in setup.
Configure
Agent configuration
The StackState Agent V2 configuration is located in the file /etc/stackstate-agent/stackstate.yaml
. The configuration file contains the STS_API_KEY
and STS_STS_URL
environment variables set when the Docker command is run. No further configuration should be required, however, a number of advanced configuration options are available.
Advanced Agent configuration
A number of advanced configuration options are available for StackState Agent V2. These can be set using environment variables and are described in detail on the page advanced Agent configuration.
Integration configuration
StackState Agent V2 can be configured to run checks that integrate with external systems. Each integration has its own configuration file that is used by the associated Agent check. Configuration files for integrations that will run through the StackState Agent in Docker should be added as a volume to the directory /etc/stackstate-agent/conf.d/
when the container is started.
For example, the Agent Docker configuration below includes a volume with a check configuration file for the ServiceNow integration:
Documentation for the available StackState integrations, including how to configure the associated Agent checks, can be found on the StackPacks > Integrations pages.
Self-Signed Certificates
If StackState Agent V2 will run checks that are configured to use self-signed certificates for HTTPs requests, override the CURL_CA_BUNDLE
environment variable:
Traces
StackState Agent V2 can be configured to collect traces via a StackState tracing integration. If the Agent will be used in conjunction with a language specific trace client, make sure to configure your app to use the host’s PID namespace:
Commands
Start or stop the Agent
To start, stop or restart StackState Agent V2, start or stop the container it is running in:
Status and information
For status information, refer to the Docker log files for the container.
To run the Agent status command inside a container:
Manually run a check
Use the command below to manually run an Agent check.
Troubleshooting
To troubleshoot the Agent, try to check the Agent status or manually run a check.
Log files
Docker logs for the StackState Agent container can be followed using the command:
Inside the running container, StackState Agent V2 logs are in the following files:
/var/log/stackstate-agent/agent.log
/var/log/stackstate-agent/process-agent.log
Set log level
To troubleshoot the StackState Agent container, set the logging level to debug
using the STS_LOG_LEVEL
environment variable:
Support knowledge base
Troubleshooting steps for any known issues can be found in the StackState support knowledge base.
Uninstall
To uninstall StackState Agent V2, stop the Docker container it is running in and remove it.
See also
Last updated