diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-04 09:41:46 +0200 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-04 09:41:46 +0200 |
commit | 1c29bcd6e26acee8639d55b3b591f6e5e3eb8c88 (patch) | |
tree | 64515da75d2c28715cc5c11a98791ecbb04225ae | |
parent | 09e7ced1dfe10f15ffcbce9717a33c7fd43b0059 (diff) | |
download | sncontinue-1c29bcd6e26acee8639d55b3b591f6e5e3eb8c88.tar.gz sncontinue-1c29bcd6e26acee8639d55b3b591f6e5e3eb8c88.tar.bz2 sncontinue-1c29bcd6e26acee8639d55b3b591f6e5e3eb8c88.zip |
telemetry and READMEs
-rw-r--r-- | docs/docs/telemetry.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/docs/telemetry.md b/docs/docs/telemetry.md index ca1fb641..23521f3b 100644 --- a/docs/docs/telemetry.md +++ b/docs/docs/telemetry.md @@ -4,20 +4,20 @@ `Continue` collects and reports **anonymous** usage information. This data is essential to understanding how we should improve the library. You can opt out of it at any time.
-## What we track
+We use [Posthog](https://posthog.com/), an open source platform for product analytics, to collect and store the data.
-We track the following...
+## What we track
-- Steps that are run and their parameters
+We track the steps that are run and their parameters
## How to opt out
-**TODO: Define where the root of your workspace**
-
-Create a `.continue/config.json` file in the root of your workspace and add the following:
+There is a `.continue` directory, which contains a `config.json` file that looks like this:
```json
{
- "allow_anonymous_telemetry": false
+ "allow_anonymous_telemetry": true
}
```
+
+You can turn off anonymous telemetry by changing the value of `allow_anonymous_telemetry` to `false`.
\ No newline at end of file |