Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/telemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ client = chromadb.Client(Settings(anonymized_telemetry=False))
We will only track usage details that help us make product decisions, specifically:

- Chroma version and environment
- The Collection commands `add` or `delete`. We track the anonymized uuid of a collection as well as the number of items added or deleted.
- Collection commands. We track the anonymized uuid of a collection as well as the number of items.
- `add`
- `update`
- `query`
- `get`
- `delete`

We **do not** collect personally-identifiable or sensitive information, such as: usernames, hostnames, file names, environment variables, or hostnames of systems being tested.

Expand Down