-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding project faq * Apply suggestions from code review Co-authored-by: Katherine Kinnaman <[email protected]> * Update docs/faq.md Co-authored-by: Katherine Kinnaman <[email protected]> * Update docs/faq.md --------- Co-authored-by: Jannis Leidel <[email protected]> Co-authored-by: Katherine Kinnaman <[email protected]>
- Loading branch information
1 parent
023dc14
commit a9100bd
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# FAQ | ||
|
||
## What happens when I enable conda-anaconda-telemetry? | ||
|
||
When the `conda-anaconda-telemetry` plugin is installed in the conda base environment and enabled, | ||
the plugin will collect additional information about how conda is being used. This is then submitted | ||
to the channel servers that are currently configured via HTTP request headers. | ||
This allows channel owners to gain additional insights about how their channels are being used. | ||
|
||
## What data is tracked by this plugin? | ||
|
||
We currently collect the following information when this plugin is installed: | ||
|
||
- Installed [virtual packages](https://docs.conda.io/projects/conda/en/stable/dev-guide/plugins/virtual_packages.html) | ||
(e.g., `glibc` version or your current architecture specifications, such as `m1`) | ||
- Installed packages in the active environment (e.g. the output of `conda list`) | ||
- Configured channels (e.g. `defaults` or `conda-forge`) | ||
- System information (e.g. `conda-build` version or the command currently being run) | ||
- When `conda search` is run, we track the packages that are being searched for | ||
- When `conda install` or `conda create` is run, we track the packages that are being installed that are | ||
specified at the command line (e.g. for the command `conda install package-a package-b`, `package-a` and | ||
`package-b` will be tracked) | ||
|
||
## Which commands are you tracking? | ||
|
||
We only track commands that make network requests. This includes the following: | ||
|
||
- `conda search` | ||
- `conda install` | ||
- `conda update` | ||
- `conda create` | ||
- `conda remove` | ||
- `conda notices` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,5 +33,6 @@ conda remove --name base conda-anaconda-telemetry | |
```{toctree} | ||
:hidden: | ||
faq | ||
dev/index | ||
``` |