From f5b0c8a323328b34cb96159cbe3a6d0cd267bf25 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Tue, 28 May 2019 13:41:52 -0400 Subject: [PATCH] docs: remove mention of project settings from analytics (#30701) This settings are not yet implemented and will be available in 8.1. PR Close #30701 --- aio/content/marketing/analytics.md | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/aio/content/marketing/analytics.md b/aio/content/marketing/analytics.md index a6b495c7aa..e6d2f093d7 100644 --- a/aio/content/marketing/analytics.md +++ b/aio/content/marketing/analytics.md @@ -15,8 +15,7 @@ include the following information: - For Schematics commands (add, generate, new and update), a list of whitelisted flags. - For build commands (build, serve), the number and size of bundles (initial and lazy), compilation units, the time it took to build and rebuild, and basic Angular-specific - API usage. *This data is collected only if usage analytics gathering is enabled for - the project.* + API usage. - Error code of exceptions and crash data. No stack trace is collected. Only Angular owned and developed schematics and builders are reported. Third-party schematics and @@ -26,9 +25,6 @@ builders do not send data to the Angular Team. When installing the Angular CLI or upgrading an existing version, you are prompted to allow global collection of usage statistics. If you say no or skip the prompt, no data is collected. -The first time a command affecting the project is run, you are prompted to allow collection of data -related to the project. If you say no or skip the prompt, no data is collected for that project. - Starting with version 8, we added the `analytics` command to the CLI. You can change your opt-in decision at any time using this command. @@ -38,9 +34,6 @@ To disable analytics gathering, run the following command: ```bash # Disable all usage analytics. ng analytics off - -# Disable project-specific usage analytics. -ng analytics project off ``` ### Enabling usage analytics @@ -49,9 +42,6 @@ To enable usage analytics, run the following command: ```bash # Enable all usage analytics. ng analytics on - -# Enable project-specific usage analytics. -ng analytics project on ``` ### Prompting @@ -60,7 +50,4 @@ To prompt the user again about usage analytics, run the following command: ```bash # Prompt for all usage analytics. ng analytics prompt - -# Prompt for project-specific usage analytics. -ng analytics project prompt ```