diff --git a/website/docs/reference/global-configs/usage-stats.md b/website/docs/reference/global-configs/usage-stats.md index 73610c29586..1c06105cde9 100644 --- a/website/docs/reference/global-configs/usage-stats.md +++ b/website/docs/reference/global-configs/usage-stats.md @@ -18,12 +18,15 @@ For full transparency, you can see all the event definitions in [`tracking.py`]( - dbt Cloud has telemetry enabled by default to help us enhance the user experience and improve the product by using real user feedback and usage patterns. While it cannot be disabled, we ensure the data is [secure](https://www.getdbt.com/security) and used responsibly. Collecting this data enables us to provide a better product experience, including improvements to the performance of dbt. -- dbt Core users have telemetry enabled by default to help us understand usage patterns and improve the product. Users can opt out of event tracking at any time by adding the following to your `profiles.yml` file: +- dbt Core users have telemetry enabled by default to help us understand usage patterns and improve the product. You can opt out of event tracking at any time by adding the following to your `dbt_project.yml` file: + + ```yaml - config: - send_anonymous_usage_stats: False + flags: + send_anonymous_usage_stats: false ``` + dbt Core users can also use the `DO_NOT_TRACK` environment variable to enable or disable sending anonymous data. For more information, see [Environment variables](/docs/build/environment-variables).