Set up the Graphsignal Profiler for inference workloads — vLLM, SGLang, PyTorch, and dstack services. Use when the user wants GPU profiling, tracing, or monitoring for inference, asks about `graphsignal-run` or `graphsignal.watch()`, or asks about CUPTI / Prometheus / OTLP setup.
dd4e33aGraphsignal observes inference workloads from a sidecar process — the profiler. It never shares a process with CUDA: the profiler watches the workload externally via CUPTI, OTLP/gRPC, Prometheus scraping, and NVML. Auto-instrumentation covers vLLM, SGLang, and PyTorch out of the box.
Two install patterns depending on how you'll launch the profiler.
For graphsignal-run (CLI, recommended): install as a uv tool, isolated from your workload env.
UV_TOOL_BIN_DIR=/usr/local/bin uv tool install 'graphsignal[cu12]' # CUDA 12.x
# or
UV_TOOL_BIN_DIR=/usr/local/bin uv tool install 'graphsignal[cu13]' # CUDA 13.x
UV_TOOL_BIN_DIR=/usr/local/bin puts graphsignal-run in a directory that is already on PATH for every shell, including non-interactive scripts and containers.
For graphsignal.watch() (in-process Python entry point): install into the app's own env.
uv add 'graphsignal[cu12]' # or pip install -U 'graphsignal[cu12]'
The cu12 / cu13 extras are Linux-only and only needed for GPU profiling.
The profiler reads its config from environment variables.
| Variable | Purpose |
| ------------------------------------- | ---------------------------------------------------------------------- |
| GRAPHSIGNAL_API_KEY (required) | Account API key. |
| GRAPHSIGNAL_API_BASE | Override the API endpoint (defaults to https://api.graphsignal.com). |
| GRAPHSIGNAL_TAG_<KEY>=<value> | Arbitrary tag attached to all signals (e.g. GRAPHSIGNAL_TAG_DEPLOYMENT=us-prod). |
Set these before invoking graphsignal-run or calling graphsignal.watch().
graphsignal-run CLI (recommended)Wrap the launch command for your workload.
export GRAPHSIGNAL_API_KEY="..."
graphsignal-run vllm serve Qwen/Qwen1.5-7B-Chat --port 8000
The CLI enables GPU profiling, starts the profiler sidecar, and launches the workload.
graphsignal.watch() from PythonFor applications that bootstrap themselves (long-lived servers, scripts, notebooks), call graphsignal.watch() once during startup, before any CUDA work happens.
import graphsignal
graphsignal.watch()
# ... your application code (PyTorch, vLLM, SGLang, etc.) ...
It enables GPU profiling in this process and starts the profiler sidecar to observe it. Returns the subprocess.Popen so the caller can wait() or terminate() it.
Distributed traces (engine / scheduler / attention spans over OTLP/gRPC) are off by default. Enable them with --enable-otel, which must come before the workload command:
graphsignal-run --enable-otel sglang serve --model-path Qwen/Qwen1.5-7B-Chat --port 8000
This captures the engine's request traces via a local OTLP collector. It requires OpenTelemetry installed in the engine's environment (e.g. pip install opentelemetry-sdk opentelemetry-exporter-otlp) — graphsignal can't provide it when installed in a separate env (e.g. uv tool), and SGLang ≥ 0.5.10 errors at startup if tracing is enabled without it. Prometheus metrics and GPU profiling are captured regardless of this flag; OTEL tracing applies only to graphsignal-run (not graphsignal.watch()).
export GRAPHSIGNAL_API_KEY="..."
graphsignal-run vllm serve Qwen/Qwen1.5-7B-Chat --port 8000
Or from Python (before importing vLLM):
import graphsignal
graphsignal.watch()
import vllm
# ...
Captures vLLM's Prometheus metrics and CUPTI GPU profiling out of the box. Engine / scheduler / KV-cache / attention / output-processing OTEL spans are added with --enable-otel (see OpenTelemetry tracing above).
vLLM Docker (image without CUPTI):
docker run --gpus all \
-p 8000:8000 --ipc=host \
-e GRAPHSIGNAL_API_KEY=YOUR_API_KEY \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--entrypoint bash \
vllm/vllm-openai:latest \
-lc 'pip install --no-cache-dir graphsignal[cu12] \
&& exec graphsignal-run vllm serve \
--model Qwen/Qwen2-VL-7B-Instruct \
--trust-remote-code'
export GRAPHSIGNAL_API_KEY="..."
graphsignal-run sglang serve \
--model-path Qwen/Qwen1.5-7B-Chat \
--port 8000
Captures SGLang's Prometheus metrics and operation-level GPU profiling out of the box. OTEL spans are added with --enable-otel (see OpenTelemetry tracing above).
SGLang Docker:
docker run --gpus all \
-p 8000:8000 --ipc=host \
-e GRAPHSIGNAL_API_KEY=YOUR_API_KEY \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--entrypoint bash \
your-sglang-image:latest \
-lc 'pip install --no-cache-dir graphsignal[cu12] \
&& exec graphsignal-run sglang serve \
--model-path Qwen/Qwen2.5-1.5B-Instruct \
--port 8000'
Auto-instrumented for common PyTorch operator / module hot paths and CUDA memory metrics. Use either CLI or watch():
export GRAPHSIGNAL_API_KEY="..."
graphsignal-run python my_app.py
import graphsignal
graphsignal.watch()
import torch
# ...
dstack runs inference as services. Use graphsignal-run around the launch command, exactly like bare-metal SGLang/vLLM.
type: service
name: deepseek-r1
image: lmsysorg/sglang:latest
env:
- MODEL_ID=deepseek-ai/DeepSeek-R1-Distill-Llama-8B
- GRAPHSIGNAL_API_KEY
commands:
- |
pip install --no-cache-dir 'graphsignal[cu12]' && \
graphsignal-run python3 -m sglang.launch_server \
--model-path $MODEL_ID \
--port 8000 \
--trust-remote-code
port: 8000
model: deepseek-ai/DeepSeek-R1-Distill-Llama-8B
resources:
gpu: 24GB
Deploy:
dstack apply -f service.dstack.yml
Ensure outgoing connections to https://api.graphsignal.com are allowed.
Copy a source-pinned command for your client. You run it yourself.
Destination: .claude/skills/graphsignal-profiler · pinned to the source commit
git clone https://github.com/graphsignal/graphsignal-profiler.git
cd graphsignal-profiler
git checkout dd4e33a6c134ae82f2b3d8a81602e3cfa699d8db
mkdir -p ".claude/skills/graphsignal-profiler"
cp -r . ".claude/skills/graphsignal-profiler"Review the source before running. This copies files into your project; it is not a one-click install and does not verify runtime safety.
Scanner static-checks@0.1.0 · commit dd4e33a6c134. Static checks cannot prove runtime safety – review the source and the exact diff before installing. How checks work.
References credentials, tokens or secret files that a skill should not need.
Evidence: [redacted]· fingerprint ccae6d912a41bfef
Instructs shell/process/package operations that run commands on the host.
Evidence: pip install· fingerprint 7944ec554efca445