From d03d2ece29a92466d915fa4b3ffdb6ebd7a5ec8b Mon Sep 17 00:00:00 2001 From: "Leona B. Campbell" <3880403+runleonarun@users.noreply.github.com> Date: Tue, 7 Jan 2025 15:54:59 -0800 Subject: [PATCH 1/2] Update usage-stats.md --- website/docs/reference/global-configs/usage-stats.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/reference/global-configs/usage-stats.md b/website/docs/reference/global-configs/usage-stats.md index 73610c29586..aa9dacd6658 100644 --- a/website/docs/reference/global-configs/usage-stats.md +++ b/website/docs/reference/global-configs/usage-stats.md @@ -18,11 +18,11 @@ 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). From 03303ae51b2df9e9128d8aa0c7d484d9f002645f Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:27:40 +0000 Subject: [PATCH 2/2] Update usage-stats.md add file name for explicitness --- website/docs/reference/global-configs/usage-stats.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/docs/reference/global-configs/usage-stats.md b/website/docs/reference/global-configs/usage-stats.md index aa9dacd6658..1c06105cde9 100644 --- a/website/docs/reference/global-configs/usage-stats.md +++ b/website/docs/reference/global-configs/usage-stats.md @@ -20,10 +20,13 @@ For full transparency, you can see all the event definitions in [`tracking.py`]( - 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 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).