Docker
StackState Self-hosted v4.6.x
This page describes StackState version 4.6.
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.
Monitoring
StackState Agent V2 will synchronize the following data with StackState from the host it is running on:
Hosts, processes, and containers
Network connections between processes/containers/services including network traffic telemetry
Telemetry for hosts, processes, and containers
In Docker swarm mode, StackState Cluster Agent running on the manager node will synchronize the following topology data for a Docker cluster:
Containers
Services
Relations between containers and services
Setup
StackState Receiver API address
StackState Agent connects to the StackState Receiver API at the specified StackState Receiver API address. The correct address to use is specific to your installation of StackState.
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
StackState Agent V2 can be configured to reduce data production, tune the process blacklist, or turn off specific features when not needed. The required settings 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.
Proxy configuration
The Agent can be configured to use a proxy for HTTP and HTTPS requests. For details, see use an HTTP/HTTPS proxy.
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