Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/telemetry.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,25 @@ The following usage information is collected and reported:

## How to Opt Out

### IDE extensions

You can disable anonymous telemetry by toggling "Allow Anonymous Telemetry" off in the user settings.

#### VS Code

Alternatively in VS Code, you can disable telemetry through your VS Code settings by unchecking the "Continue: Telemetry Enabled" box (this will override the Settings Page settings). VS Code settings can be accessed with `File` > `Preferences` > `Settings` (or use the keyboard shortcut `ctrl` + `,` on Windows/Linux or `cmd` + `,` on macOS).

### CLI

For `cn`, the Continue CLI, set the environment variable `CONTINUE_CLI_ENABLE_TELEMETRY=0` before running commands:

```bash
export CONTINUE_CLI_ENABLE_TELEMETRY=0
cn <your prompt>
```

Or run it inline:

```bash
CONTINUE_CLI_ENABLE_TELEMETRY=0 cn <your prompt>
```
Loading