> ## Documentation Index
> Fetch the complete documentation index at: https://docs.generalrobotics.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# MonitorSnapshot

> MonitorSnapshot

```python theme={null}
from grid_nexus_client import MonitorSnapshot
```

## Fields

<ResponseField name="scope" type="MonitorScope" />

<ResponseField name="session" type="SessionState" />

<ResponseField name="parties" type="tuple[PartyInstance, ...]" />

<ResponseField name="graph_nodes" type="tuple[GraphNodeStatus, ...]" />

<ResponseField name="health" type="tuple[HealthStatus, ...]" />

<ResponseField name="errors" type="tuple[MonitorEvent, ...]" />

<ResponseField name="collected_at_ms" type="int" />

## Constructor

```python Signature theme={null}
MonitorSnapshot(
    scope: MonitorScope,
    session: SessionState,
    parties: tuple[PartyInstance, ...],
    graph_nodes: tuple[GraphNodeStatus, ...],
    health: tuple[HealthStatus, ...],
    errors: tuple[MonitorEvent, ...],
    collected_at_ms: int,
)
```


## Related topics

- [Your first skill](/get-started/first-skill.md)
