1 import * as Sentry from "sentry-miniapp"; 2 Sentry.init({ 3 dsn: "https://xxxxxxxxx", 4 // Set tracesSampleRate to 1.0 to capture 100% 5 // of transactions for performance monitoring. 6 // We recommend adjusting this value in production 7 tracesSampleRate: 1.0 8 });
1 // 调用sentryInit函数进行Sentry的初始化配置 2 sentryInit({ 3 // 将sentry的init方法和app实例传递给sentryInit 4 sentry: { init }, 5 app, 6 7 // 指定Sentry项目的DSN(数据源名称),用于将错误数据发送到正确的Sentry项目 8 dsn: 'https://xxxxx', 9 10 // 配置集成,这里添加了两个集成:BrowserTracing和Replay 11 integrations: [ 12 // BrowserTracing集成用于跟踪浏览器中的性能问题,如页面加载时间等 13 new BrowserTracing({ 14 // 通过vueRouterInstrumentation对Vue路由进行追踪 15 routingInstrumentation: vueRouterInstrumentation(router), 16 }), 17 // Replay集成用于记录和回放用户的操作,帮助开发者更好地理解错误发生的上下文 18 new Replay({ 19 // 配置允许采集的接口,如果有非同源的接口域名需要在这里配置 20 networkDetailAllowUrls: [window.location.origin], 21 22 // 配置请求头中需要采集的字段 默认只采集 Content-Type、Content-Length、Accept, Authorization 需要确认需不需要 23 networkRequestHeaders: ['traceparent', '__refreshid__', 'Cookie', 'Authorization'], 24 25 // 配置响应头中需要采集的字段 26 networkResponseHeaders: ['traceparent', 'set-cookie'], 27 28 // 是否对所有文本进行脱敏处理,这里设置为false 29 maskAllText: false, 30 31 // 是否对所有输入进行脱敏处理,这里设置为false 32 maskAllInputs: false, 33 34 // 是否阻止所有媒体加载,这里设置为false 35 blockAllMedia: false, 36 }), 37 ], 38 39 // 设置追踪的采样率,1.0表示100%的追踪事件都会被采集 值介于0 至1.0, 事件是随机挑选的 40 tracesSampleRate: 1.0, 41 42 // 设置环境变量,用于区分不同的环境(如开发、测试、生产等) 43 environment: import.meta.env.MODE, 44 45 // 是否开启错误上报, 46 enabled: true, 47 48 // 设置版本号,可以用来过滤和定位特定版本的错误 49 release: import.meta.env.BUILD_TIME as string, 50 51 // 配置需要忽略的错误类型或错误消息,这些错误将不会被上报到Sentry 52 ignoreErrors: [ 53 'ResizeObserver loop limit exceeded', 54 // ...(其他需要忽略的错误) 55 // 'ResizeObserver loop completed with undelivered notifications', 56 // /Failed to fetch dynamically imported module/, 57 // /Failed to load module script/, 58 // /Importing a module script failed/, 59 // /promise rejection captured with keys: code, error, msg/, 60 // /exception captured with keys: code, data, msg/, 61 // /Unable to preload CSS for/, 62 // /exception captured with keys: errorFields, outOfDate, values/, 63 ], 64 65 initialScope: { 66 tags: { "my-tag": "my value" }, 67 user: { id: 4222xxx, email: "xxxx.com" }, 68 }, 69 70 // 设置用户名 71 username: xxx.userName, 72 73 // 是否将错误记录到控制台,这里设置为true 74 logErrors: true, 75 }) 76 77 78 79 export function configSentryPlugin() { 80 return vitePluginSentry({ 81 // 指定 Sentry 服务的 URL 82 url: 'https://sentry.xxxx.cn', 83 84 // 指定 Sentry 的授权令牌,这是连接 Sentry 服务并进行错误追踪的凭证 85 authToken: '', //sentry授权令牌 86 87 // 指定 Sentry 中的组织名称 88 org: 'sentry', 89 90 // 指定 Sentry 中的项目名称 91 project: 'xxxx', 92 93 // 指定发布的版本,这里使用了环境变量 BUILD_TIME 的值作为版本信息 94 release: process.env.BUILD_TIME as string, 95 96 // 配置 source map 的相关设置,用于在 Sentry 中更准确地定位错误位置 97 sourceMaps: { 98 // 指定需要包含进 source map 的文件或文件夹,这里包含了 './dist/assets' 文件夹 99 include: ['./dist/assets'], 100 101 // 指定需要忽略的文件或文件夹,这里忽略了 'node_modules' 文件夹 102 ignore: ['node_modules'], 103 104 // 设置 source map 的 URL 前缀,用于在 Sentry 中构建正确的 source map URL 105 urlPrefix: '~/cloudConfigAssets', 106 }, 107 108 // 设置跳过环境检查,即使在非生产环境中也上传 source map 和错误信息到 Sentry 109 skipEnvironmentCheck: true, 110 }) 111 }