Telemetry Opt-Out

RelayPlane telemetry is optional. You can keep it disabled permanently, disable it at runtime, or run fully offline.

1) Disable via CLI

1# Check current state
2relayplane telemetry status
3
4# Turn telemetry off
5relayplane telemetry off

This updates ~/.relayplane/config.json by setting telemetry_enabled: false.

2) Disable in config file

Edit your RelayPlane config directly:

1{
2 "telemetry_enabled": false
3}

Config path: ~/.relayplane/config.json

3) Run in offline mode

Start RelayPlane with --offline to disable non-LLM network calls for that process. This includes telemetry and cloud sync.

1relayplane --offline
Telemetry is disabled by default for new installs. You can verify your current state any time with relayplane telemetry status.