为方便小程序接入sentry,由raven改写而来的小程序版本。
npm install --save sentry-weapp
yarn add sentry-weapp
要安装SDK,只需添加高级包,例如:
import Raven from 'sentry-weapp'
import Raven from 'sentry-weapp/transport'
Raven.config('https://[email protected]/x', options).install()
在app的onLaunch中初始化(?),options为可选配置对象,目前支持:
options = {
release: '当前小程序版本',
environment: 'production', // 指定为production才会上报
allowDuplicates: true, // 允许相同错误重复上报
sampleRate: 0.5 // 采样率
}
收集的信息将在上报时被一起带上
初始化后raven会默认收集以下信息:
{
SDKversion: '小程序基础库版本',
WXversion: '微信版本',
device: '设备型号',
network: '网络类型',
system: '系统信息',
}
可以通过Raven.setUserContext(context)或者Raven.setExtraContext(context)添加更多信息(kdtId和userId等)
console的行为默认将被自动收集
wx.request不可扩展,因此只能手动收集请求的行为:例如在经过封装的请求函数的成功回调内添加:
Raven.captureBreadcrumb({
category: 'ajax',
data: {
method: 'get',
url: 'weapp.showcase.page/1.0.0/get',
status_code: 200
}
ui操作的记录暂不支持
页面变化的记录暂不支持
分为message和exception的上报
使用Raven.captureMessage(msg, option)上报需要上报的信息比如ajax的报错等
所有uncaught exception都会被小程序捕获封装成msg传递到app的onError中,在onError中上报这些信息:
onError(msg) {
Raven.captureException(msg, {
level: 'error'
})
}
App.vue 主入口文件
import Raven from 'sentry-weapp'
export default {
onLaunch () {
Raven.config('https://[email protected]/x', {
release: '3.0.4',
environment: 'production',
allowDuplicates: true, // 允许相同错误重复上报
sampleRate: 0.5 // 采样率
}).install()
},
onError (msg) {
// Raven.captureException(msg)
Raven.captureException(msg, {
level: 'error'
})
}
}
- IRC (chat.freenode.net, #sentry)
- Follow @getsentry on Twitter for updates