0.1.3 • Published 4 years ago
zer-report v0.1.3
前端监控JS SDK
接入Vue
import zer from 'zer-report'
zer({
aId:'xxxx-xxxx-xxxx',
ignore:['Script error'],
uId:localStorage.getItem("uId"),
appType:Vue
});接入H5
import zer from 'zer-report'
zer({
aId:'xxxx-xxxx-xxxx',
});CDN 方式引用
<script src="xxx"></script>
<script>
zerReport({
aId:'xxxx-xxxx-xxxx',
})
</script>config
| 参数 | 说明 | 类型 | 是否必填 | 默认值 | |
|---|---|---|---|---|---|
| aId | 平台创建的应用APPID | string | 是 | - | |
| resLen | 上报参数长度 | string | 否 | 1024*10 | |
| reqLen | 上报参数长度 | string | 否 | 1024*10 | |
| isAjax | 是否上报ajax性能数据,错误等信息 | boolean | 否 | false | |
| isJsError | 是否上报JS报错 | boolean | 否 | true | |
| isPv | 是否上报PV数据 | boolean | 否 | true | |
| isPerformance | 是否上报前端性能 | boolean | 否 | true | |
| appType | 当前应用类型 | string|function | 否 | 'h5' | |
| appVersion | 上报版本号 | string | 否 | - | '' |
| ignore | 忽略上报的关键字 | (RegExp , string , (RegExp | string)[]) | 否 | - | |
| getMaxLen | GET请求最大长度 | number | 否 | 2048 | |
| collectionRate | 采集率,主要降低服务器压力 | number | 否 | 100 |
0.1.3
4 years ago