Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove mention of project settings from analytics #30701

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 1 addition & 14 deletions aio/content/marketing/analytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.

Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
```