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 state2relayplane telemetry status34# Turn telemetry off5relayplane telemetry offThis updates ~/.relayplane/config.json by setting telemetry_enabled: false.
2) Disable in config file
Edit your RelayPlane config directly:
1{2 "telemetry_enabled": false3}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 --offlineTelemetry is disabled by default for new installs. You can verify your current state any time with
relayplane telemetry status.