性能监控
简介(gioPerformance)
提供页面 首屏加载监控 和 错误监控 的性能监控采集插件。
采集范围
1、页面加载监控
含以下指标监控:
- 页面完整加载时长(PageLoad);从开始页面加载到页面渲染完成的耗时
- 可交互时长(domReady);从开始页面加载到执行完所有同步脚本和dom内容加载的耗时
- 首次内容绘制/白屏时长(FCP);从开始页面加载到页面内容的任何部分在屏幕上完成渲染的时间
- 最大内容绘制(LCP);从开始页面加载的时间点到可视区域内可见的最大图像或文本块完成渲染的时间
- 第一字节时间(TTFB);从开始页面加载到接收到服务端返回的第一个字节的时间(包含Redirect、Cache、DNS、TCP、Request的时长总和)
2、错误监控
含以下错误类型监控:
- JS执行错误
- 资源加载错误
- Promise执行错误
- 网络请求错误
3、网络请求监控
含以下内容监控:
- 请求地址
- 请求时长
- 请求错误码
浏览器兼容性
1、页面加载监控
- 页面完整加载时长(PageLoad):同采集SDK
- 可交互时长(domReady):同采集SDK
- 首次内容绘制/白屏时长(FCP):Chrome >=51, Edge >= 15, Firefox >= 54, Safari >=14.1
- 最大内容绘制(LCP):Chrome >=51, Edge >= 15
- 第一字节时间(TTFB):Chrome >=51, Edge >= 15, Firefox >= 54, Safari >=8, Internet Explorer 11
2、错误监控
同采集SDK。参考文档
3、网络请求监控
同采集SDK。参考文档
集成
此插件为独立插件,即使您集成了全量版本SDK,需要此功能时,依然需要单独集成或注册此插件。
1、引入
CDN集成引入
<script src="https://assets.giocdn.com/sdk/webjs/plugins/gioPerformance.js"></script>
提示: 上述地址中的SDK插件默认使用umd
格式进行打包,若您的站点需要使用esm
格式的SDK插件;或者如果您希望不受 CDN(内容分发网络)影响,请下载至本地集成,并修改引用为您本地项目的相对地址。
WebJS SDK 插件下载:https://github.com/growingio/growingio-sdk-webjs-autotracker/releases
注意github上的SDK产物为了方便模块化开发,默认是esm
格式,如需引用umd
格式的SDK,请到包内名为umd的文件内查找引用。
npm集成引入
import gioPerformance from "gio-webjs-sdk/plugins/gioPerformance"
2、注册
普通工程化Web站点
gdp('registerPlugins', [gioPerformance]);
gdp('init', xxxx);
Vue2
// main.js
import Vue from 'vue';
import gdp from 'gio-webjs-sdk';
import gioPerformance from 'gio-webjs-sdk/plugins/gioPerformance';
import App from './App.vue';
// 注册Gio插件并初始化SDK
gdp('registerPlugins', [gioPerformance]);
gdp('init', 'your accountId', 'your dataSourceId', {
...other settings
});
// 注册vue插件
Vue.use(gioPerformance.GioVue);
new Vue({
render: (h) => h(App)
}).$mount('#app');
Vue3
// main.js
import { createApp } from 'vue';
import gdp from 'gio-webjs-sdk';
import gioPerformance from 'gio-webjs-sdk/plugins/gioPerformance';
import App from './App.vue';
// 注册Gio插件并初始化SDK
gdp('registerPlugins', [gioPerformance]);
gdp('init', 'your accountId', 'your dataSourceId', {
...other settings
});
const app = createApp(App);
// 注册vue插件
app.use(gioPerformance.GioVue);
app.mount('#app');
React(>=16)
React Error Boundaries 官方参考文档
// ErrorBoundary.js
import React from 'react';
import gioPerformance from 'gio-webjs-sdk/plugins/gioPerformance';
export default class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = { hasError: false };
}
static getDerivedStateFromError(error) {
// 更新 state 使下一次渲染能够显示报错后的 UI
return { hasError: true };
}
componentDidCatch(error, errorInfo) {
// 在componentDidCatch中调用gioPerformance提供的gioReactErrorReport方法上报错误
gioPerformance.gioReactErrorReport(error, errorInfo);
}
render() {
if (this.state.hasError) {
// 你可以自定义报错后的 UI 并渲染
return <h1>Something went wrong.</h1>;
}
return this.props.children;
}
}
// index.js
import React from 'react';
import ReactDOM from 'react-dom/client';
import gdp from 'gio-webjs-sdk';
import gioPerformance from 'gio-webjs-sdk/plugins/gioPerformance';
import App from './App';
import ErrorBoundary from './ErrorBoundary';
// 注册Gio插件并初始化SDK
gdp('registerPlugins', [gioPerformance]);
gdp('init', 'your accountId', 'your dataSourceId', {
...other settings
});
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
</React.StrictMode>
);
配置
集成性能采集插件时,默认开启 首屏加载监控
和 错误监控
,默认关闭 网络监控
。如您不需要其中某项监控内容,在初始化配置项选择指定内容关闭。
关闭首屏加载监控
gdp('init', 'your accountId', 'your dataSourceId', {
...other settings
performance: { monitor: false }
}
);
关闭错误监控
gdp('init', 'your accountId', 'your dataSourceId', {
...other settings
performance: { exception: false }
}
);
设置请求监控排除名单
在实际的请求监控当中,可能会需要排除某些域名或接口的请求监控,这时只需要在network
配置项中添加exclude
字段,exclude
值可以是一个域名字符串、一个正则表达式,或者是一个域名字符串和正则表达式组成的数组。
gdp('init', 'your accountId', 'your dataSourceId', {
...other settings
performance: {
network: {
exclude: 'myhost.com'
// 或 exclude: /myhost.com/gi
// 或 exclude: ['myhost.com', /myhost.com/gi]
}
}
}
);
注意
1、如果您对请求监控设置了排除名单,使用纯字符串校验时应尽可能使用长且准确的字符,过短的字符串可能会使得其他请求被匹配误过滤。
2、请求监控强制过滤了Gio上报的请求。