> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemoclaw/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemoclaw/_mcp/server.

# Manage Deep Agents Trace Export

> Stop, disable, reconfigure, or remove Deep Agents trace export and its host collector.

Manage sandbox instrumentation and the operator-owned host collector as separate lifecycle controls.
NemoClaw does not start, stop, upgrade, or remove the collector.

## Set the Sandbox Name

Set the target sandbox in the host shell:

```bash
export SANDBOX_NAME=my-dcode
```

## Stop or Restart the Collector

Stop and restart the collector without changing the sandbox:

```bash
docker stop nemoclaw-otel-langsmith
docker start nemoclaw-otel-langsmith
```

While the collector is stopped, trace delivery fails open and Deep Agents Code continues working.

## Revoke Collector Reachability

Remove the policy preset to revoke collector reachability immediately:

```bash
nemo-deepagents "$SANDBOX_NAME" policy-remove observability-otlp-local --yes
```

Removing the preset does not clear the recorded observability choice.
A later rebuild restores the preset on Balanced and Open tiers.
The Restricted tier continues to suppress it.

## Disable Trace Export

Disable instrumentation persistently with a transactional rebuild:

```bash
nemo-deepagents "$SANDBOX_NAME" rebuild --no-observability --yes
```

Finish active `dcode` tasks before running the rebuild.
NemoClaw preserves declared agent state, managed MCP providers, and adapter state.

## Remove or Reconfigure the Collector

Remove the collector only after every sandbox that uses it has tracing disabled or the preset removed:

```bash
docker rm -f nemoclaw-otel-langsmith
```

Recreate the collector after changing its configuration, endpoint, project, workspace, or API key.

## Related Topics

* [Set Up Deep Agents Trace Export](set-up-deepagents-trace-export) configures the policy and collector.
* [Verify Deep Agents Trace Export](verify-deepagents-trace-export) proves local and remote delivery.
* [Understand Deep Agents Trace Export](understand-deepagents-trace-export) explains fail-open behavior and trust boundaries.