# Docker

## Overview

{% hint style="info" %}
**StackState Agent V3**
{% endhint %}

StackState Agent V3 can run in a Docker container. The Agent collects data from the host where it's 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](/5.1/stackpacks/integrations/agent.md) must be installed in your StackState instance. For details of the data retrieved and available integrations, see the [StackPack integration documentation](/5.1/stackpacks/integrations.md).

In Docker Swarm mode, the StackState Swarm Agent can be deployed on the manager node to retrieve topology data for the cluster.

## Monitoring

StackState Agent V3 will retrieve topology and metrics data from the host that it's running on. In [Docker swarm mode](#docker-swarm-mode), StackState Cluster Agent running on the manager node will synchronize data for a Docker cluster. For details, see the [data retrieved](#data-retrieved).

## Setup

### Single container

To start a single Docker container with StackState Agent V3, run the command below.

* `<STACKSTATE_RECEIVER_API_KEY>` is set during StackState installation.
* `<STACKSTATE_RECEIVER_API_ADDRESS>` is specific to your installation of StackState.

For details see [StackState Receiver API](/5.1/setup/agent/about-stackstate-agent.md#connect-to-stackstate).

{% code lineNumbers="true" %}

```
docker run -d \
    --name stackstate-agent \
    --privileged \
    --network="host" \
    --pid="host" \
    -v /var/run/docker.sock:/var/run/docker.sock:ro \
    -v /proc/:/host/proc/:ro \
    -v /sys/fs/cgroup/:/host/sys/fs/cgroup:ro \
    -v /etc/passwd:/etc/passwd:ro \
    -v /sys/kernel/debug:/sys/kernel/debug \
    -e STS_API_KEY="<STACKSTATE_RECEIVER_API_KEY>" \
    -e STS_STS_URL="<STACKSTATE_RECEIVER_API_ADDRESS>" \
    -e STS_PROCESS_AGENT_URL="<STACKSTATE_RECEIVER_API_ADDRESS>" \
    -e STS_PROCESS_AGENT_ENABLED="true" \
    -e STS_NETWORK_TRACING_ENABLED="true" \
    -e STS_PROTOCOL_INSPECTION_ENABLED="true" \
    -e STS_APM_URL="<STACKSTATE_RECEIVER_API_ADDRESS>" \
    -e STS_APM_ENABLED="true" \
    -e HOST_PROC="/host/proc" \
    -e HOST_SYS="/host/sys" \
    quay.io/stackstate/stackstate-agent:3.0.0
```

{% endcode %}

### Docker compose

To run StackState Agent V3 with Docker compose:

1. Add the following configuration to the compose file on each node where the Agent will run.
   * `<STACKSTATE_RECEIVER_API_KEY>` is set during StackState installation.
   * `<STACKSTATE_RECEIVER_API_ADDRESS>` is specific to your installation of StackState. For details see [StackState Receiver API](/5.1/setup/agent/about-stackstate-agent.md#connect-to-stackstate).

{% code lineNumbers="true" %}

```bash
stackstate-agent:
 image: quay.io/stackstate/stackstate-agent:3.0.0
 network_mode: "host"
 pid: "host"
 privileged: true
 volumes:
   - "/var/run/docker.sock:/var/run/docker.sock:ro"
   - "/proc/:/host/proc/:ro"
   - "/sys/fs/cgroup/:/host/sys/fs/cgroup:ro"
   - "/etc/passwd:/etc/passwd:ro"
   - "/sys/kernel/debug:/sys/kernel/debug"
 environment:
   STS_API_KEY: "<STACKSTATE_RECEIVER_API_KEY>"
   STS_STS_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
   STS_PROCESS_AGENT_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
   STS_PROCESS_AGENT_ENABLED: "true"
   STS_NETWORK_TRACING_ENABLED: "true"
   STS_PROTOCOL_INSPECTION_ENABLED: "true"
   STS_APM_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
   STS_APM_ENABLED: "true"
   HOST_PROC: "/host/proc"
   HOST_SYS: "/host/sys"
```

{% endcode %}

3. Run the command:

   ```
   docker-compose up -d
   ```

### 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 V3 must also be deployed on each node as a [Docker compose setup](#docker-compose).

To run StackState Swarm Agent in Docker Swarm mode:

1. Create a file `docker-compose.yml` with the following content. Update to include details of your StackState instance:
   * `<STACKSTATE_RECEIVER_API_KEY>` is set during StackState installation.
   * `<STACKSTATE_RECEIVER_API_ADDRESS>` is specific to your installation of StackState. For details see [StackState Receiver API](/5.1/setup/agent/about-stackstate-agent.md#connect-to-stackstate).
   * `<CLUSTER_NAME>` is the name you would like to give this cluster

{% code lineNumbers="true" %}

```bash
stackstate-agent:
    image: quay.io/stackstate/stackstate-swarm-agent:2.19.1
    deploy:
      placement:
        constraints: [ node.role == manager ]
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro
      - /etc/passwd:/etc/passwd:ro
      - /sys/kernel/debug:/sys/kernel/debug
    environment:
      STS_API_KEY: "<STACKSTATE_RECEIVER_API_KEY>"
      STS_STS_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
      STS_COLLECT_SWARM_TOPOLOGY: "true"
      STS_LOG_LEVEL: "debug"
      STS_LOG_TO_CONSOLE: "true"
      DOCKER_SWARM: "true"
      STS_CLUSTER_NAME: <CLUSTER_NAME>
```

{% endcode %}

2. Run the command:

   ```
   docker stack deploy -c docker-compose.yml
   ```

{% hint style="info" %}
Running the StackState Swarm Agent in Docker Swarm mode will collect basic topology data from the cluster. To retrieve more data, including telemetry, StackState Agent V3 must also be installed on each node in the Swarm cluster as a [Docker compose setup](#docker-compose).
{% endhint %}

### Upgrade

To upgrade StackState Agent V3 running inside a Docker container.

1. Stop the running container and remove it.

```
docker stop stackstate-agent
docker container rm stackstate-agent
```

1. Run the container using the instructions provided in [setup](#setup).

## Configure

### Agent configuration

The StackState Agent V3 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 V3 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](/5.1/setup/agent/advanced-agent-configuration.md).

### External integration configuration

StackState Agent V3 can be configured to run checks that integrate with external systems. Each integration has its own configuration file that's used by the associated Agent check. Configuration files for integrations that will run through StackState Agent V3 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:

{% code lineNumbers="true" %}

```bash
stackstate-agent:
    image: quay.io/stackstate/stackstate-agent:3.0.0
    network_mode: "host"
    pid: "host"
    privileged: true
    volumes:
      - "/var/run/docker.sock:/var/run/docker.sock:ro"
      - "/proc/:/host/proc/:ro"
      - "/sys/fs/cgroup/:/host/sys/fs/cgroup:ro"
      - "/etc/passwd:/etc/passwd:ro"
      - "/sys/kernel/debug:/sys/kernel/debug"
      - "/etc/stackstate-agent/conf.d/servicenow.d/conf.yaml:/servicenow.d/conf.yaml:ro"
    environment:
      STS_API_KEY: "<STACKSTATE_RECEIVER_API_KEY>"
      STS_STS_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
      HOST_PROC: "/host/proc"
      HOST_SYS: "/host/sys"
```

{% endcode %}

Documentation for the available StackState integrations, including how to configure the associated Agent checks, can be found on the [StackPacks > Integrations pages](/5.1/stackpacks/integrations.md).

### Proxy configuration

The Agent can be configured to use a proxy for HTTP and HTTPS requests. For details, see [use an HTTP/HTTPS proxy](/5.1/setup/agent/agent-proxy.md).

### Self-Signed Certificates

If StackState Agent V3 will run checks that are configured to use self-signed certificates for HTTPs requests, override the `CURL_CA_BUNDLE` environment variable:

```
  CURL_CA_BUNDLE = ""
```

### Traces

StackState Agent V3 can be configured to collect traces via a [StackState tracing integration](/5.1/configure/traces/set-up-traces.md#2-configure-tracing-integrations). 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:

```
  service:
    ...
    pid: "host" # should match with processes reported by the StackState process Agent
    ...
```

## Commands

### Start or stop the Agent

To start, stop or restart StackState Agent V3, start or stop the container it's running in:

```
# Start container
docker start stackstate-agent

# Stop container
docker stop stackstate-agent
```

### Status and information

For status information, refer to the Docker log files for the container.

To run the Agent status command inside a container:

```yaml
docker exec stackstate-agent bash -c 'agent status'
```

### Manually run a check

Use the command below to manually run an Agent check.

```yaml
# Execute a check once and display the results.
docker exec stackstate-agent bash -c 'agent check <CHECK_NAME>'

# Execute a check once with log level debug and display the results.
docker exec stackstate-agent bash -c 'agent check -l debug <CHECK_NAME>'
```

## Troubleshooting

To troubleshoot the Agent, try to [check the Agent status](#status) or [manually run a check](#manually-run-a-check).

### Log files

Docker logs for the StackState Agent V3 container can be followed using the command:

```
docker logs -f stackstate-agent
```

Inside the running container, StackState Agent V3 logs are in the following files:

* `/var/log/stackstate-agent/agent.log`
* `/var/log/stackstate-agent/process-agent.log`

### Debug mode

By default, the log level of the Agent container is set to `INFO`. To assist in troubleshooting, the Agent log level can be set to `DEBUG`. This will enable verbose logging and all errors encountered will be reported in the Agent log files.

To set the log level to `DEBUG` for an Agent running on Docker, use the `STS_LOG_LEVEL` environment variable. Other optional logging settings:

* `STS_LOG_PAYLOADS: "true"` - include the topology/telemetry payloads sent to StackState in the Agent log.
* `STS_LOG_TO_CONSOLE: "true"` - write log output to the container stdout.

For example:

{% tabs %}
{% tab title="Docker compose" %}
{% code lineNumbers="true" %}

```bash
stackstate-agent:
  image: quay.io/stackstate/stackstate-agent:3.0.0
  network_mode: "host"
  pid: "host"
  privileged: true
  volumes:
    - "/var/run/docker.sock:/var/run/docker.sock:ro"
    - "/proc/:/host/proc/:ro"
    - "/sys/fs/cgroup/:/host/sys/fs/cgroup:ro"
    - "/etc/passwd:/etc/passwd:ro"
    - "/sys/kernel/debug:/sys/kernel/debug"
  environment:
    STS_API_KEY: "<STACKSTATE_RECEIVER_API_KEY>"
    STS_STS_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
    STS_PROCESS_AGENT_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
    STS_PROCESS_AGENT_ENABLED: "true"
    STS_NETWORK_TRACING_ENABLED: "true"
    STS_PROTOCOL_INSPECTION_ENABLED: "true"
    STS_APM_URL: "<STACKSTATE_RECEIVER_API_ADDRESS>"
    STS_APM_ENABLED: "true"
    HOST_PROC: "/host/proc"
    HOST_SYS: "/host/sys"
    STS_LOG_LEVEL: "debug"
    STS_LOG_TO_CONSOLE: "true"
    STS_LOG_PAYLOADS: "true"
```

{% endcode %}
{% endtab %}
{% endtabs %}

### Support knowledge base

Troubleshooting steps for any known issues can be found in the [StackState support knowledge base](https://support.stackstate.com/hc/en-us/search?category=360002777619\&filter_by=knowledge_base\&query=agent).

## Uninstall

To uninstall StackState Agent V3, stop the Docker container it's running in and remove it.

```
docker stop stackstate-agent
docker container rm stackstate-agent
```

## Data retrieved

### Topology

StackState Agent V3 will retrieve the following topology data from the host that it's running on:

* Hosts, processes and containers
* Network connections between processes/containers/services

In [Docker swarm mode](#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

### Metrics

StackState Agent V3 will retrieve the metrics listed below for containers. Telemetry for hosts and processes, as well as network traffic telemetry for network connections between processes/containers/services will also be retrieved.

**Metrics for containers**

The list below shows the container metrics that are provided by default. Additional metrics may be supplied by other sources based on your specific implementation.

* Container Restart
* Container State
* CPU amount of seconds throttled
* CPU number of times throttled
* CPU threads count
* CPU time - System (percentage / second)
* CPU time - Total (percentage / second)
* CPU time - User (percentage / second)
* IO read (bytes / second)
* IO written (bytes / second)
* Memory - Cache (bytes)
* Memory - Resident (bytes)
* Network received (bytes / second)
* Network received (packets / second)
* Network sent (bytes / second)
* Network sent (packets / second)

## See also

* [About StackState Agent V3](/5.1/setup/agent/about-stackstate-agent.md)
* [StackState Agent V2 StackPack](/5.1/stackpacks/integrations/agent.md)
* [StackPack integration documentation](/5.1/stackpacks/integrations.md)
* [StackState Agent V3 (github.com)](https://github.com/StackVista/stackstate-agent)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://archivedocs.stackstate.com/5.1/setup/agent/docker.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
