> ## Documentation Index
> Fetch the complete documentation index at: https://browser-use.mingxi.ltd/llms.txt
> Use this file to discover all available pages before exploring further.

# 遥测

> 了解 Browser Use 的遥测和隐私设置

## 概述

Browser Use 收集匿名使用数据，以帮助我们了解库的使用情况并改善用户体验。这也帮助我们更快地修复错误并确定功能开发的优先级。

## 数据收集

我们使用 [PostHog](https://posthog.com) 进行遥测数据收集。数据完全匿名化，不包含任何个人身份信息。

<Note>
  我们绝不收集个人信息、凭证或来自你的浏览器自动化任务的具体内容。
</Note>

## 退出选项

你可以通过设置环境变量来禁用遥测:

```bash .env theme={null}
ANONYMIZED_TELEMETRY=false
```

或在你的 Python 代码中:

```python theme={null}
import os
os.environ["ANONYMIZED_TELEMETRY"] = "false"
```

<Note>
  即使启用遥测，也不会对库的性能或功能产生任何影响。代码可在 [Telemetry
  Service](https://github.com/browser-use/browser-use/tree/main/browser_use/telemetry) 中查看。
</Note>
