Skip to content

Commit

Permalink
Update telemetry.md
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKSchott authored Aug 28, 2023
1 parent 15f3cb8 commit b816362
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/content/pages/telemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ We track general usage information about Astro and different configuration optio
- Command invoked (`astro build`, `astro dev`, `astro preview`, etc.)
- Astro version
- General machine information (e.g. number of CPUs, macOS/Windows/Linux, CI environment, etc.)
- Integrations, adapters, markdown options, and other select configuration
- Errors during the build process
- General configuration information (Integrations, adapters, markdown options, etc.)
- Sanitized error information

This list is regularly audited to ensure its accuracy. You can audit telemetry yourself locally by settings the `DEBUG=”astro:telemetry”` environment variable when running the Astro CLI.
This list is regularly audited to ensure its accuracy. You can audit telemetry yourself locally by settings the `DEBUG=”astro:telemetry”` environment variable when running the Astro CLI. While in debug mode, telemetry events ares only logged to the console.

An example telemetry event might look like this:

Expand All @@ -41,19 +41,19 @@ An example telemetry event might look like this:

## What about sensitive data?

We **do not** collect any metrics which may contain sensitive data. This includes, but is not limited to: environment variables, personally identifiable information, file paths, contents of files, logs, stack traces, git remote information, or un-serialized JavaScript error messages.
We **do not** collect any metrics which may contain sensitive data. This includes, but is not limited to: environment variables, personally identifiable information, file paths, contents of files, logs, stack traces, git remote information, or unsanitized JavaScript error messages.

We take your privacy very seriously. You can read our [privacy policy](https://astro.build/privacy/) to learn more.

## How is my data protected?

The data collected by the Astro CLI is completely anonymous and only meaningful in aggregate form. The data that we store is not traceable to the source, and is only available to a small subset of the Astro core maintainer team to help inform our roadmap prioritization.

None of the data that we collect is personally identifiable. It has never and will never be sold or monetized in any form.
The Astro CLI does not track, collect, or store personally identifiable information (PII). The telemetry data that we do track has never and will never be sold or monetized in any form.

## How do I opt out?

You can also opt-out by running `astro telemetry disable` in the root of any Astro project directory:
You can always opt-out by running `astro telemetry disable` in the root of any Astro project directory:

```bash
npx astro telemetry disable
Expand Down

0 comments on commit b816362

Please sign in to comment.