# TracingStatus

> **Class** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/config/TracingStatus)

Offline snapshot of LangSmith tracing configuration for diagnostics.

Carries only presence/identity facts — never API keys or other secret
values — so it is safe to render in `dcode doctor` output.

## Signature

```python
TracingStatus(
    self,
    enabled: bool,
    explicitly_disabled: bool,
    has_credentials: bool,
    endpoint: str | None,
    project: str | None,
    project_is_default: bool,
    replica_project: str | None,
    runs_endpoints: tuple[str, ...] = (),
)
```

## Constructors

```python
__init__(
    self,
    enabled: bool,
    explicitly_disabled: bool,
    has_credentials: bool,
    endpoint: str | None,
    project: str | None,
    project_is_default: bool,
    replica_project: str | None,
    runs_endpoints: tuple[str, ...] = (),
) -> None
```

| Name | Type |
|------|------|
| `enabled` | `bool` |
| `explicitly_disabled` | `bool` |
| `has_credentials` | `bool` |
| `endpoint` | `str \| None` |
| `project` | `str \| None` |
| `project_is_default` | `bool` |
| `replica_project` | `str \| None` |
| `runs_endpoints` | `tuple[str, ...]` |


## Properties

- `enabled`
- `explicitly_disabled`
- `has_credentials`
- `endpoint`
- `project`
- `project_is_default`
- `replica_project`
- `runs_endpoints`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/7794b61a6e76230e8c7a49bdce808b3728305914/libs/code/deepagents_code/config.py#L3538)