网络应用性能会影响用户的留存率。如果页面加载时间过长,用户就会放弃。所以我们需要监控 Web 应用来了解性能,确保服务稳定、可用、健康。Apache SkyWalking 是一款专门为云原生和基于容器架构设计的应用性能监控(APM)工具。其 skywalking-client-js 是一个轻量级的客户端 JavaScript 异常、性能和追踪库。
本文介绍了 skywalking-client-js 如何将其监控扩展到浏览器,为 SkyWalking 后端提供性能指标和错误收集。
性能指标
skywalking-client-js 使用 window.performance 来收集性能数据。从 MDN 文档来看,性能接口提供了对当前页面的性能相关信息的访问。它是 High Resolution Time API 的一部分,但对 Performance Timeline API、Navigation Timing API、User Timing API 和 Resource Timing API 有所增强。
在 skywalking-client-js 中,所有的性能指标都是根据 W3C 规范中定义的 Navigation Timing API 来计算的。我们可以使用 window.performance.timing 属性获得一个描述页面的 PerformanceTiming 对象。PerformanceTiming 接口包含的属性提供了当前页面加载和使用过程中发生的各种事件的性能计时信息。
我们把这些属性放在一起看,可以更好地理解 W3C 的下图。
下表包含了 skywalking-client-js 的性能指标。
Metrics 名称 | 描述 | 计算公式 | 备注 |
---|---|---|---|
redirectTime | Page redirection time | redirectEnd – redirectStart | If the current document and the document that is redirected to are not from the same origin, set redirectStart, redirectEnd to 0 |
ttfbTime | Time to First Byte | responseStart – requestStart | According to Google Development |
dnsTime | Time to DNS query | domainLookupEnd – domainLookupStart | |
tcpTime | Time to TCP link | connectEnd – connectStart | |
transTime | Time to content transfer | responseEnd – responseStart | |
sslTime | Time to SSL secure connection | connectEnd – secureConnectionStart | Only supports HTTPS |
resTime | Time to resource loading | loadEventStart – domContentLoadedEventEnd | Represents a synchronized load resource in pages |
fmpTime | Time to First Meaningful Paint | Listen for changes in page elements. Traverse each new element, and calculate the total score of these elements. If the element is visible, the score is 1 * weight; if the element is not visible, the score is 0 | |
domAnalysisTime | Time to DOM analysis | domInteractive – responseEnd | |
fptTime | First Paint Time | responseEnd – fetchStart | |
domReadyTime | Time to DOM ready | domContentLoadedEventEnd – fetchStart | |
loadPageTime | Page full load time | loadEventStart – fetchStart | |
ttlTime | Time to interact | domInteractive – fetchStart | |
firstPackTime | Time to first package | responseStart – domainLookupStart |
skywalking-client-js 收集这些性能指标,并发送给 OAP(Observability Analysis Platform)服务器,服务器在后台汇总数据,然后在 UI 端以可视化的方式展示出来。用户可以根据这些数据来优化页面。
异常指标
在 skywalking-client-js 中可以捕捉到五种错误:
window.addeventlistener ('error ', callback, true)
捕捉资源加载错误。window.onerror
抓取 JS 执行错误。window.addEventListener ('unhandledrejection', callback)
用来捕捉Promise错误。Vue.config.errorHandler
捕获。addEventListener ('error',callback);addEventListener ('abort',callback);addEventListener ('timeout',callback);
在 send callback 中捕获。skywalking-client-js 将错误数据追踪到 OAP 服务器,最后在 UI 端将数据可视化呈现。对于 App 的错误概况,有几个指标可以进行基本的统计和错误的趋势,包括以下指标:
- App Error Count,选定时间段内的错误总数。
- App JS 错误率,选定时间段内有 JS 错误的 PV 占总 PV 的比例。
- All of Apps Error Count,Top N Apps 错误数排名。
- All of Apps JS Error Rate,前 N 个 Apps JS 错误率排名。
- 所选 App 中的版本错误数,所选 App 中的版本错误数排名前 N 名。
- 所选 App 中的版本错误率,所选 App 中的版本错误率排名前 N 名 JS 错误率排名。
- 所选 App 的出错率,所选 App 的出错率排名前 N 名。
- 所选 App 的错误率,所选 App 排名的前 N 个 JS 错误率。
对于页面,我们使用多个指标进行基本统计和错误趋势,包括以下指标。
- Top Unstable Pages / Error Rate, Top N Error Count pages of the Selected version ranking.
- Top Unstable Pages / Error Count,Top N Error Count 页面的 Selected 版本排名。
- 页面错误数布局,一段时间内不同错误的数据显示。
用户指标
SkyWalking 浏览器监控还提供了访客使用被监控网站的指标,如 PV(页面浏览量)、UV(独立访客)、前 N 名 PV(页面浏览量)等。
在 SPA(单页应用)中,页面只会被刷新一次。传统方法只在页面加载后报告一次 PV,但无法统计每个子页面的 PV,也无法使其他类型的日志按子页面进行汇总。
SkyWalking 浏览器监控针对 SPA 页面提供了两种处理方式。
让我们来看看下图中的结果。它显示了最受欢迎的应用和版本,以及一段时间内 PV 的变化。
让浏览器成为分布式追踪的起点。
SkyWalking 浏览器监控拦截 HTTP 请求,追踪段(Segment)和跨度(Span)。它支持追踪以下模式的 HTTP 请求。XMLHttpRequest 和 fetch.。它还支持追踪基于 XMLHttpRequest 和 fetch 的库和工具 —— 如 Axios、SuperAgent、OpenApi 等。
我们来看看 SkyWalking 浏览器监控是如何拦截 HTTP 请求的。
之后,使用 window.addEventListener ('xhrReadyStateChange', callback)
,在请求头中设置sw8=xxxx。同时,向后端报告请求信息。最后,我们可以在追踪页面上查看追踪数据。下图展示的追踪页面。
为了了解我们是如何监听 fetch 请求的,我们来看看 fetch 的源码。
如你所见,它创建了一个 Promise 和一个新的 XMLHttpRequest 对象。由于 fetch 的代码是内置在浏览器中的,它必须先监控代码执行。因此,当我们添加监听事件时,我们无法监控 fetch 中的代码。只是在监控完代码执行后,我们重写一下 fetch: import {fetch} from 'whatwg-fetch'; window.fetch = fetch;
这样,我们就可以通过上面的方法拦截 fetch 请求了。
其他资源
从 官方网站、Tetrate 博客 以及可免费下载的 电子书 中阅读更多关于 SKyWalking 的内容。