Sentry接入及上报
Installation
1 2 3 4 5
| # Using yarn $ yarn add @sentry/browser
# Using npm $ npm install @sentry/browser
|
React项目不需要安装以下包
1 2 3 4 5
| # Using yarn yarn add @sentry/integrations
# Using npm npm install @sentry/integrations
|
创建
Sentry网站创建对应项目
Vue项目接入Sentry
以下代码添加到 main.js
里面
1 2 3 4 5 6 7 8 9 10
| import Vue from 'vue' import * as Sentry from '@sentry/browser'; import * as Integrations from '@sentry/integrations';
Sentry.init({ dsn: 'https://************@sentry.io/********', release: 'test@0.0.1', integrations: [new Integrations.Vue({Vue, attachProps: true})], });
|
React项目接入Sentry
1 2 3 4 5 6 7 8
| import React from 'react'; import ReactDOM from 'react-dom'; import * as Sentry from '@sentry/browser'; import App from 'src/App';
Sentry.init({dsn: "https://*******@sentry.io/****"});
ReactDOM.render(<App />, document.getElementById('root'));
|
使用webpack-sentry-plugin插件上传及删除sourceMap
使用 webpack-sentry-plugin
这个插件可以做到上传并删除SourceMap文件。
Installation
npm install webpack-sentry-plugin --save-dev
yarn add webpack-sentry-plugin --dev
Usage
Require webpack-sentry-plugin
:
var SentryPlugin = require('webpack-sentry-plugin');
Add to webpack config:
1 2 3 4 5 6 7 8 9 10 11 12 13
| var config = { plugins: [ new SentryPlugin({ organization: 'your-organization-name', project: 'your-project-name', apiKey: 'your-api-keys',
release: 'your-release-version' }) ] }
|
Vue项目插件用法
创建vue.config.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| var SentryPlugin = require('webpack-sentry-plugin');
module.exports = { configureWebpack: config => { config.plugins.push( new SentryPlugin({ organization: 'futuredawn', project: 'vue01', apiKey: 'b2d7c7c66b2c4e0d9086f0abe6e535722b9b1b5e417c45eabeaae119b13216e8',
release: 'test@0.0.1', include: /\.js.map$/, deleteAfterCompile: true }) ) } }
|
可以根据运行环境判断是否使用SentryPlugin
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| var SentryPlugin = require('webpack-sentry-plugin');
module.exports = { configureWebpack: config => { if (process.env.NODE_ENV === 'production') { config.plugins.push( new SentryPlugin({ organization: process.env.VUE_APP_ORGANIZATION, project: process.env.VUE_APP_PROJECT, apiKey: process.env.VUE_APP_APIKEY, release: process.env.VUE_APP_RELEASE, include: /\.js.map$/, deleteAfterCompile: true }) ) } else { } } }
|
.env.production
1 2 3 4
| VUE_APP_ORGANIZATION = ******* VUE_APP_PROJECT = vue01 VUE_APP_APIKEY = ****************** VUE_APP_RELEASE = vue01@0.0.4
|


React项目插件用法
创建项目之后 yarn eject 把配置暴露出来
打开config/webpack.config.js
添加 *const* *SentryPlugin* = require('webpack-sentry-plugin');
在文件510行(HtmlWebpackPlugin上面)添加plugin
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| new SentryPlugin({ organization: '*****', project: 'react01', apiKey: '******',
release: 'react@0.0.1', include: /\.map$/, deleteAfterCompile: true, suppressConflictError: true }),
|
参考资料
掘金参考文档
webpack-sentry-plugin