This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
EAS 更新下载性能
在真实用户设备上跟踪 EAS 更新 OTA 包的下载时间,并在 EAS Observe 仪表板中提供每次更新的详细信息。
EAS Observe 会自动跟踪每个 OTA 更新在真实用户设备上下载所需的时间。你无需添加任何监控工具:如果你的应用使用 EAS Update 并包含 expo-observe,EAS Observe 会收集每次更新获取的下载指标。
🌐 EAS Observe automatically tracks how long each OTA update takes to download on real user devices. You don't need to add any instrumentation: if your app uses EAS Update and includes expo-observe, EAS Observe collects download metrics for every update fetch.
更新下载时间会显示在 EAS Observe 仪表板的 EAS 更新 标签中,并且可以通过 EAS CLI 查询。
🌐 Update download times appear in the EAS Update tab of the EAS Observe dashboard and are queryable from the EAS CLI.
查看更新下载
🌐 View update downloads
在仪表板中:打开你的项目并导航到 Observe > EAS Update。该标签有两个部分:一个汇总图表和一个每次更新的表格。
🌐 In the dashboard: open your project and navigate to Observe > EAS Update. The tab has two sections: an aggregate chart and a per-update table.
更新下载时间
🌐 Update download time
一张图表显示在所选时间范围内获取的所有更新的总下载时间。统计细分与应用启动选项卡相同:中位数、平均值、最小值、最大值、第90百分位和第99百分位。使用这些指标可以发现更新大小或 CDN 延迟的回归。
🌐 A single chart showing aggregate download time across all updates fetched in the selected time range. Statistical breakdowns mirror the App startup tab: Median, Avg, Min, Max, P90, and P99. Use these to spot regressions in update size or CDN latency.
图表上的更新标记表示每次更新首次下载的时间。单击标记可查看该时点的更新 ID、版本和指标。
🌐 Update markers on the chart indicate when each update first downloaded. Click a marker to see the update ID, version, and metrics at that point.
最近更新
🌐 Recent updates
一个按更新列出的表,列出在时间范围内获取的每一次更新,包含以下列:
🌐 A per-update table listing every update fetched in the time range, with the following columns:
- 更新:更新ID和消息。
- 下载量:下载更新的唯一设备数量。
- 中位下载:该更新的中位下载时间,在表格中相对于最慢更新以条形显示。
- P90:该更新的第90百分位下载时间。
- 首次下载:当第一个设备获取更新时。
按 下载量、下载中位数、P90 或 首次下载 升序或降序排序。点击一行以查看该更新的单个下载事件。
🌐 Sort by Downloads, Median download, P90, or First downloaded in ascending or descending order. Click a row to drill into the individual download events for that update.
从命令行接口(CLI):
🌐 From the CLI:
# Summary of update download time grouped by app version- eas observe:metrics-summary --metric update_download# Slowest individual update downloads- eas observe:metrics update_download --order desc运行 eas observe:metrics-summary --help 或 eas observe:metrics --help 以获取完整的标志列表(时间范围、平台、应用版本、更新 ID 等)。
🌐 Run eas observe:metrics-summary --help or eas observe:metrics --help for the full list of flags (time range, platform, app version, update ID, and more).