npx skills add ...
npx skills add datadog-labs/agent-skills --skill troubleshoot-ssi
npx skills add datadog-labs/agent-skills --skill troubleshoot-ssi
Diagnose and fix Single Step Instrumentation (SSI) issues on Linux hosts — SSI automatically instruments applications for APM without code changes. Only use if the agent and SSI are configured but traces are missing or instrumentation is not working.
Invoke this skill when the user expresses intent to:
verify-ssiDo NOT invoke this skill if:
enable-ssi firstYou do NOT need SSH access to start troubleshooting. The pup CLI queries Datadog's backend directly. Start with pup commands immediately using information the user already gave you (hostname, service name, env). Only go to SSH if pup doesn't reveal the cause.
If not found, install it (OS-aware):
Auth — check in this order:
If authenticated — proceed directly to Step 1.
ERROR: Not authenticated:
This opens a browser tab for OAuth. Complete the login there — Claude will continue once the command exits.
If DD_API_KEY and DD_APP_KEY are both set — proceed to Step 1. pup will use them automatically even if pup auth status shows unauthenticated.
Use what the user already provided. Do not ask for missing context upfront — resolve variables lazily, only when a specific step needs them.
| Variable | How to resolve | When needed |
|---|---|---|
DD_HOSTNAME | From the user's message, or datadog-agent status via SSH | Step 1 — start here |
SERVICE_NAME | From the user's message | Step 1 — start here |
ENV | Ask the user only when a command requires it | Step 1 (service-library-config get), Step 3 |
DD_SITE | Ask the user, or grep "^site:" /etc/datadog-agent/datadog.yaml via SSH | Only if pup auth check fails |
SSH_KEY | From user or /workspace/.ssh/id_ed25519 | Step 4 (SSH investigation) only |
SSH_USER | From user or default root | Step 4 (SSH investigation) only |
SSH_HOST | From user's message | Step 4 (SSH investigation) only |
If the user has already provided DD_HOSTNAME and SERVICE_NAME, go directly to Step 1. Do not ask for ENV or SSH details first.
Read this before investigating. It gives you the mental model to reason about novel failures.
Injection chain:
DD_APM_INSTRUMENTATION_ENABLED=host) installs datadog-apm-inject and language library packages under /opt/datadog-packages//etc/ld.so.preload.so from /opt/datadog-packages/datadog-apm-library-<lang>/localhost:8126intake.<DD_SITE>Diagnostic layers:
pup — sees what Datadog's backend received + injection errors reported by the launcher. Start here./proc/<pid>/maps — sees the actual shared libraries loaded into a running process. The authoritative check for whether injection succeeded.datadog-agent status — sees whether the local Agent is receiving traces.Known silent failures:
already_instrumented result class)/etc/ld.so.preload only affects new processesLD_PRELOAD entirely/etc/ld.so.preload reads for confined processesdatadog-installer status reflects DB registration, not actual files. A package can show as installed while its directory is empty. Always verify files exist under /opt/datadog-packages/<package>/Service name identity — important:
With SSI, DD_SERVICE is often not set in the process environment. The tracer auto-detects a service name. The telemetry-reported name (what pup fleet tracers list and service-library-config get show) may not match what you expect in the APM UI:
inventory-service-1.0.0), spans use the base name (inventory-service)fastapi or django rather than the app nameIf service-library-config get returns empty, use pup traces search --query "host:<DD_HOSTNAME>" --from 1h --limit 5 to discover what service names have been sending traces, then retry.
Run these first. The answers determine everything that follows.
ENV is required for service-library-config get. If the user didn't provide it, state your assumed value (e.g. prod) and run it anyway — don't stop to ask.
Key values to check in service-library-config get output:
apm_enabled — must be true. If false, the tracer won't send traces regardless of injection.trace_agent_url — must point to http://localhost:8126 or the correct agent socket. Wrong value = tracer can't reach the Agent.site — must match your Datadog org's site.Your final response is the deliverable — not your investigation transcript. It must include every diagnostic from this skill that you ran or that applies, each with its purpose and what you found. Avoid these failure modes:
Omitting a required diagnostic. Your response must explicitly include, by name:
pup apm troubleshooting list --hostname <DD_HOSTNAME> — injection errorspup apm service-library-config get --service-name <SERVICE_NAME> --env <ENV> — runtime SDK configapm_enabled is true and that trace_agent_url points to the correct agent endpoint (e.g. http://localhost:8126)datadog-agent status for the APM receiver, and a /proc/<pid>/maps (or equivalent) check that the tracer .so is loaded into the processRun them if you have access; recommend them for the user to run if you don't.
Substituting a proxy check. Confirming port 8126 is listening shows the Agent's receiver is up — it is not a substitute for verifying the tracer-side apm_enabled and trace_agent_url config keys. They answer different questions; report both.
Concluding before the checks. Outline and run the diagnostics before settling on a root cause, then give specific per-finding remediation and note that the service must be restarted after any config or package fix.
Before investigating, explicitly state your ranked hypotheses based on triage output. Do not skip this step.
| Triage signal | Strong hypothesis |
|---|---|
pup troubleshooting list shows result: error, result_class: incorrect_installation | Package directory empty or corrupt — verify files exist under /opt/datadog-packages/datadog-apm-library-<lang>/, then use remediation flow |
pup troubleshooting list shows result: error, import/load error | Tracer library couldn't be loaded — check runtime version, libc compatibility |
pup troubleshooting list shows result: abort, reason already_instrumented | Manual ddtrace/OTel already in the app — launcher silently disabled itself |
pup troubleshooting list shows result: abort, reason language not detected | Expected for non-app processes (e.g., bash, cron). Not a failure. |
pup troubleshooting list empty | Either no injection attempts yet (process not restarted), or injection succeeded silently |
service-library-config get shows apm_enabled: false | Tracer is loaded but explicitly disabled — check source field to see who set it |
service-library-config get shows trace_agent_url pointing to wrong host/port | Tracer can't reach the Agent — fix the URL |
service-library-config get shows wrong site | Traces going to wrong Datadog org |
No traces in pup traces search, no troubleshooting errors | Process was never injected — check: process not restarted after SSI enabled, /etc/ld.so.preload missing, static binary |
Unexpected service name in pup apm services list results | Service name mismatch — use the actual name from trace data for subsequent config lookups |
| Traces arriving in pup | Not a real problem — likely a UI filter or time window. Tell the user and stop. |
State your top 1-3 hypotheses explicitly: "Based on triage, I think the most likely cause is X because Y."
Use only the tools relevant to your hypotheses.
Check SDK config in detail:
Key values to check:
apm_enabled — if false, tracer won't send traces. Check source to see who disabled it (code > env_var > remote_config > default)trace_agent_url — should be http://localhost:8126 or a Unix socket. Wrong value = tracer can't reach Agentsite — must match your Datadog org's site. Mismatch = traces going to wrong orgservice — with SSI and no DD_SERVICE set, source: default is expectedIf service-library-config get returns empty — the service name you're using may not match the actual name in trace data:
Use the service field from trace results for subsequent config lookups.
Check injection error details:
Before asking for SSH credentials, briefly explain what you need to check and why, so the user understands the diagnostic plan before handing over access.
Is /etc/ld.so.preload set?
If it contains a path ending in launcher.preload.so or libdatadog-apm-inject.so — launcher is armed for new processes.
ERROR: Empty or missing — SSI was not fully set up. Re-run the install script with DD_APM_INSTRUMENTATION_ENABLED=host.
Is the tracer actually loaded into the running process?
This is the authoritative injection check — use /proc/<pid>/maps, not environ:
Use the PID:
pup troubleshooting list for the reason)/etc/ld.so.preload not set, process started before SSI was enabled, or static binaryWas the process started before SSI was enabled?
If process started before /etc/ld.so.preload was written, restart the service. Always confirm with the user before restarting production services.
Is the base libc musl?
ERROR: musl — SSI's launcher requires glibc. No workaround; must migrate to Debian/Ubuntu/RHEL/Amazon Linux.
Is it a static binary?
ERROR: statically linked — SSI cannot instrument this binary. Manual instrumentation required.
Are the APM packages actually present on disk?
datadog-installer status reflects only DB registration — a package can show as installed while its directory is empty. Always verify:
ERROR: Directory empty or missing — package is registered but broken on disk. Use the remediation flow.
Does the app have existing manual instrumentation?
Also check dependency manifests: requirements.txt, package.json, Gemfile, pom.xml.
ERROR: Found — SSI silently disabled itself. Remove manual tracer, restart the service.
Is the Agent APM receiver listening and receiving traces?
feature_auto_instrumentation_enabled: true — SSI is active on the agentReceiver (previous minute) — trace count received by the agentEndpoints — where traces are forwardedERROR: Port 8126 not listening — APM receiver disabled. Check apm_config.enabled in /etc/datadog-agent/datadog.yaml.
What service name did the tracer register?
With SSI, DD_SERVICE is often not set. Read the tracer's memfd to find the real service name:
Use the fd number:
Returns service_name, service_env, tracer_version.
Is SELinux/AppArmor blocking /etc/ld.so.preload?
If SELinux/AppArmor is denying access, work with the user's security team. Do not disable SELinux systemwide.
Before applying any fix, answer:
If the conclusion doesn't hold up, return to Step 2 with new hypotheses.
Remediation: Reinstalling a Broken APM Package
datadog-installer status reflects DB registration, not actual file presence. If pup troubleshooting list shows incorrect_installation but the installer says the package is installed, the registration is stale:
If re-running the install script is sufficient (package files are intact), use remove first only if the script reports success but the problem persists.
After any config change — restart the service (confirm with user first for production):
The user must restart the affected service for SSI to re-inject. Identify the service manager and present restart instructions — do not restart automatically unless the user explicitly asks.
Common restart commands:
Re-run the pup triage commands to confirm the fix worked:
If there are no new injection errors and traces are arriving — resolved. Automatically proceed to onboarding-summary now — do not ask the user for permission.
ERROR: Still failing — return to Step 2 with updated hypotheses.
datadog-installer remove requires explicit confirmation — confirm with user before runningpup auth status --site <DD_SITE>pup auth login --site <DD_SITE>echo "DD_API_KEY set: $([ -n "${DD_API_KEY:-}" ] && echo yes || echo no)"
echo "DD_APP_KEY set: $([ -n "${DD_APP_KEY:-}" ] && echo yes || echo no)"# Check for injection errors (failures only — successful injections don't appear here)
pup apm troubleshooting list --hostname <DD_HOSTNAME>
# Check full tracer config — look at apm_enabled, trace_agent_url, site
pup apm service-library-config get --service-name <SERVICE_NAME> --env <ENV>
# Check what services have sent traces (reveals actual service names visible to backend)
pup apm services list --from 1h
# Check if traces exist at all
pup traces search --query "service:<SERVICE_NAME>" --from 15m --limit 5
# Fastest trace confirmation — metrics appear before indexed traces
pup metrics query --query "sum:trace.*.request.hits{host:<DD_HOSTNAME>,service:<SERVICE_NAME>}.as_count()" --from 15m# Show all config values with their source (env_var, remote_config, code, default)
pup apm service-library-config get --service-name <SERVICE_NAME> --env <ENV>
# Show only configs where instances disagree (config drift)
pup apm service-library-config get --service-name <SERVICE_NAME> --mixedpup traces search --query "host:<DD_HOSTNAME>" --from 1h --limit 5pup apm troubleshooting list --hostname <DD_HOSTNAME> --timeframe 4hssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> "cat /etc/ld.so.preload"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"pgrep -a -f '<SERVICE_NAME>' | head -3"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"sudo cat /proc/<PID>/maps | grep -E 'launcher|apm-library|datadog'"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"ps -p <PID> -o pid,lstart,cmd; stat /etc/ld.so.preload"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"ldd --version 2>&1 | head -1 && cat /etc/os-release | grep PRETTY_NAME"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"file /proc/<PID>/exe; ldd /proc/<PID>/exe 2>&1"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"ls /opt/datadog-packages/ && ls /opt/datadog-packages/datadog-apm-library-<LANG>/ | head -5"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> "
sudo cat /proc/<PID>/maps | grep -E 'ddtrace|opentelemetry|dd-trace'
"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"sudo datadog-agent status 2>&1 | grep -A 15 'APM Agent'"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"sudo ss -tlnp 2>/dev/null | grep 8126 || sudo netstat -tlnp 2>/dev/null | grep 8126"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> "
sudo ls -la /proc/<PID>/fd/ | grep 'datadog-tracer-info'
"ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"sudo cat /proc/<PID>/fd/<FD_NUM> | python3 -c \"import sys,msgpack; d=msgpack.unpackb(sys.stdin.buffer.read()); print(d)\""ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> "
getenforce 2>/dev/null
ausearch -m AVC -ts recent 2>/dev/null | grep 'ld.so.preload\|datadog' | tail -10
dmesg | grep -i 'apparmor.*denied.*datadog' | tail -5
"# Remove the stale registration first
ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"sudo datadog-installer remove datadog-apm-library-<LANG>"
# Re-run install — now it will actually download and extract
ssh -o StrictHostKeyChecking=no -i <SSH_KEY> <SSH_USER>@<SSH_HOST> \
"DD_API_KEY=${DD_API_KEY} DD_SITE=${DD_SITE} DD_APM_INSTRUMENTATION_ENABLED=host bash -c \"\$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)\""# systemd
sudo systemctl restart <SERVICE_NAME>
# supervisord
sudo supervisorctl restart <PROGRAM_NAME>
# pm2
pm2 reload <APP_NAME>pup apm troubleshooting list --hostname <DD_HOSTNAME> --timeframe 15m
pup traces search --query "service:<SERVICE_NAME>" --from 15m --limit 5
pup metrics query --query "sum:trace.*.request.hits{host:<DD_HOSTNAME>,service:<SERVICE_NAME>}.as_count()" --from 15m