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
This commit is contained in:
Charles Lyding 2019-05-28 13:41:52 -04:00 committed by Matias Niemelä
parent d2b0ac7de8
commit f5b0c8a323
1 changed files with 1 additions and 14 deletions

View File

@ -15,8 +15,7 @@ include the following information:
- For Schematics commands (add, generate, new and update), a list of whitelisted flags. - 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), - 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 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 API usage.
the project.*
- Error code of exceptions and crash data. No stack trace is collected. - 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 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 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. 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 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. decision at any time using this command.
@ -38,9 +34,6 @@ To disable analytics gathering, run the following command:
```bash ```bash
# Disable all usage analytics. # Disable all usage analytics.
ng analytics off ng analytics off
# Disable project-specific usage analytics.
ng analytics project off
``` ```
### Enabling usage analytics ### Enabling usage analytics
@ -49,9 +42,6 @@ To enable usage analytics, run the following command:
```bash ```bash
# Enable all usage analytics. # Enable all usage analytics.
ng analytics on ng analytics on
# Enable project-specific usage analytics.
ng analytics project on
``` ```
### Prompting ### Prompting
@ -60,7 +50,4 @@ To prompt the user again about usage analytics, run the following command:
```bash ```bash
# Prompt for all usage analytics. # Prompt for all usage analytics.
ng analytics prompt ng analytics prompt
# Prompt for project-specific usage analytics.
ng analytics project prompt
``` ```