Skip to main content
The Standalone Agent is in beta. If you encounter issues not covered here, contact support@usechamber.io.

Agent Fails to Start

Check the logs for error details:
Common causes:

Host Not Appearing in Dashboard

  1. Verify the agent is running:
  2. Check for a successful WebSocket connection in the logs:
  3. Verify the token is correct:
    Ensure it matches a valid token from Settings > API Tokens in the Chamber dashboard.
  4. Check network connectivity:
    A 200 response confirms network access.

No GPU Metrics

NVIDIA Driver Not Detected

If this fails, the NVIDIA driver is not installed or not loaded. Install the driver appropriate for your GPU and OS.

DCGM Exporter Not Running

If this returns nothing or errors, DCGM Exporter is not running. Check its status:
Restart if needed, or re-run the installer which will set up DCGM Exporter automatically.

DCGM Exporter on a Non-Default Port

If DCGM Exporter is running on a port other than 9400, update the agent configuration:
Then restart the agent: sudo systemctl restart chamber-agent-standalone

GPU Usage Metric Not Available

The GPU Usage metric requires DCGM profiling metrics. If it’s missing:
  1. Check profiling metrics are exported:
    You should see DCGM_FI_PROF_SM_ACTIVE, DCGM_FI_PROF_PIPE_TENSOR_ACTIVE, and DCGM_FI_PROF_DRAM_ACTIVE.
  2. If absent, add profiling fields to your DCGM Exporter counters file. See Ensuring DCGM Profiling Metrics Are Collected.
  3. Check GPU compatibility: Profiling requires Volta-generation GPUs or newer (V100, T4, A100, H100, B200, etc.).
  4. Check for conflicting profiling sessions: Another tool (e.g., Nsight Systems, Nsight Compute) holding a profiling session prevents DCGM from collecting profiling metrics. Close the conflicting tool and restart DCGM Exporter.

OTLP Receiver Issues

Application Can’t Connect to Port 4317

  1. Verify the OTLP receiver is enabled:
    It should be true (or absent, since true is the default).
  2. Check the agent is listening:
  3. If another process is using port 4317, change the agent’s OTLP port:
    Then restart the agent and update your application’s exporter endpoint.

Metrics Sent but Not Appearing in Dashboard

  • Metrics are batched and uploaded every 60 seconds. Wait at least 2 minutes after sending.
  • Check agent logs for OTLP-related errors:
  • Verify your application sets service.name in its resource attributes. Metrics without a service name may be harder to find in the dashboard.

Agent Keeps Restarting

Check for repeated crash logs:
Common causes:
  • Python version too old: The agent requires Python 3.11+. Check with /opt/chamber-standalone/venv/bin/python --version.
  • Corrupted installation: Re-run the installer to repair: curl -fsSL https://chamber-agent-releases.s3.amazonaws.com/install.sh | sudo bash

Health and Liveness Probes

The agent provides CLI commands for health and liveness checks, useful for container orchestration or custom monitoring:
Both commands check for a recent heartbeat file (within the last 120 seconds) and exit with code 0 (healthy) or 1 (unhealthy). The systemd service uses the liveness probe as a watchdog automatically. If you’re running the agent in a container, configure probes like:

Support

If these steps don’t resolve your issue, contact support@usechamber.io with:
  • Agent logs: sudo journalctl -u chamber-agent-standalone --no-pager -n 200
  • Agent version: /opt/chamber-standalone/venv/bin/chamber-standalone version
  • Host info: /opt/chamber-standalone/venv/bin/chamber-standalone host-info
  • GPU info: nvidia-smi