1. 监控原理

1.1 onerror

传统的前端监控原理分为异常捕获和异常上报。一般使用​​onerror​​捕获前端错误:

window.onerror = (msg, url, line, col, error) => {
console.log('onerror')
// TODO
}


1.2 promise

但是​​onerror​​​事件无法捕获到网络异常的错误(资源加载失败、图片显示异常等),例如​​img​​​标签下图片url 404 网络请求异常的时候,​​onerror​​​无法捕获到异常,此时需要监听​​unhandledrejection​​。

window.addEventListener('unhandledrejection', function(err) {
console.log(err)
})


1.3 上报

捕获的异常如何上报?常用的发送形式主要有两种:


  1. 通过 ajax 发送数据(xhr、jquery...)
  2. 动态创建 img 标签的形式

function report(error) {
var reportUrl = 'http://xxxx/report'
new Image().src = reportUrl + '?error=' + error
}


1.4 使用sentry

sentry是一套开源的强大的前端异常监控上报工具,官网地址:​​https://sentry.io​​,官方提供了如何搭建sentry服务,此处略过安装流程,直接使用已有的服务。

1.5 与vue结合

针对vue,sentry官方推荐使用raven配合sentry进行异常捕获和上报。而在vue中,vue提供了错误捕获方法​​vue error handler​​​,官方也推荐使用错误追踪服务 ​​sentry​​​ 并通过​​vue error handler​​选项提供了官方支持。

2. 安装raven

raven是sentry官方针对vue推荐的插件,yarn安装raven-js即可。

$ yarn add raven-js


3. 初始化sentry

初始化引入Vue、Raven、RavenVue即可,sentry能主动监听上报错误。

import Raven from 'raven-js'
import RavenVue from 'raven-js/plugins/vue'
const dsn = 'https://<key1>@sentry.io/<key2>'
Raven.config(dsn).addPlugin(RavenVue, Vue).install()


4. 手动上报

对于一些其他信息,如提示日志等,无法自动捕获,需要手动进行上报。

log (data = null, type = 'error', options = {}) {
// 添加面包屑
Raven.captureBreadcrumb({
message: data,
category: 'manual message'
})
// 异常上报
if (data instanceof Error) {
Raven.captureException(data, {
level: type,
logger: 'manual exception',
tags: { options: options }
})
} else {
Raven.captureException('error', {
level: type,
logger: 'manual data',
extra: {
data: data,
options: this.options,
date: new Date()
}
})
}
}


5. 封装异常上报类 Report.js

针对上述内容,封装异常上报类Report,使用单例模式,避免监控类重复实例化。

/**
* by csxiaoyao
* 2019.03.17
* sunjianfeng@csxiaoyao.com
*/
import Raven from 'raven-js'
import RavenVue from 'raven-js/plugins/vue'
class Report {
static dsn = 'https://<key1>@sentry.io/<key2>'
constructor (Vue, options = {}) {
if (process.env.NODE_ENV === 'production') { // TODO }
this.Vue = Vue
this.options = options
}
/**
* 单例模式
*/
static getInstance (Vue, options) {
if (!(this.instance instanceof this)) {
this.instance = new this(Vue, options)
this.instance.install()
this.instance.registerError()
}
return this.instance
}
/**
* init
*/
install () {
Raven.config(Report.dsn, {
release: '1.0.0',
environment: 'production'
// whitelistUrls: [/localhost/, /test\.oa\.com/]
}).addPlugin(RavenVue, this.Vue).install()
// 记录用户信息
Raven.setUserContext({
user: this.options.user || ''
})
// 设置全局tag标签
Raven.setTagsContext({ environment: this.options.env || '' })
}
/**
* 注册全局错误处理
*/
registerError () {
// 监听error
window.onerror = (msg, url, line, col, error) => {
console.log('onerror')
if (msg !== 'Script error.' && !url) {
return true
}
setTimeout(() => {
let data = {}
col = col || (window.event && window.event.errorCharacter) || 0
data.url = url
data.line = line
data.col = col
data.error = error
if (&& error.stack) {
data.msg = error.stack.toString()
}
this.log(data)
}, 0)
return true
}
// 监听promise
window.addEventListener('unhandledrejection', err => {
console.log('unhandledrejection')
setTimeout(() => {
this.