Telemetry
Telemetry is off by default. When enabled, the Gateway sends aggregate JSON (query latency percentiles, version, etc.) to a configurable HTTPS endpoint on a fixed interval.
Configure
Section titled “Configure”In nimbus.toml:
[telemetry]enabled = falseendpoint = "https://telemetry.nimbus-agent.dev/v1/ingest"flush_interval_seconds = 3600Environment overrides use the NIMBUS_TELEMETRY_* prefix (see packages/gateway/src/config/telemetry-toml.ts).
Inspect and disable
Section titled “Inspect and disable”nimbus telemetry show # requires Gateway — prints the sanitized preview payloadnimbus telemetry disable # stops flushing; respects .nimbus-telemetry-disabled in the data dirPayloads are validated before send; unexpected keys or credential-shaped strings cause a hard failure in development tests.