错误监控——Sentry

2024-03-11 18:30:19 浏览数 (1)

应用场景

  • 需要一个错误追踪平台
  • 需要一个性能监控平台
  • 开源

简介

Sentry 是一个开发人员优先的错误跟踪和性能监控平台。

它是一种软件监控工具,可帮助开发人员识别和修复与代码相关的问题。从错误跟踪到性能监视,Sentry 提供代码级可观测性,使您可以轻松诊断问题并持续了解应用程序代码运行状况。

  • 官网:https://docs.sentry.io/
  • github(36.5k star):https://github.com/getsentry/sentry

可以用于已上线项目的前端代码错误跟踪,例如米哈游的《原神》官网使用了Sentry!

链接:https://ys.mihoyo.com/

相关代码如下:

代码语言:html复制
<script>
  Sentry.setTag("publicKey", "pz_FJYZwhyyGI");
  Sentry.init({
    dsn: 'https://189262c005cc4295a99e09e9a5dbf523@sentry-inc.ssr.mihoyo.com/125',
    environment: 'production',
    release: 'pz_FJYZwhyyGI-production.cn-2.23.12',
    integrations: [new Sentry.BrowserTracing()],
    tracesSampleRate: 1,
    ignoreErrors: [
      'The play() request was interrupted',
      'The operation was aborted',
      '$ is not defined',
      'mihoyo-event-dialog-cancel',
      "play() failed because the user didn't interact with the document first",
      'The play method is not allowed by the user agent or the platform in the current context'
    ],
    // debug: true,
  })
</script>

更多资料

  • Sentry Web 前端监控 - 官方最佳实践教程
  • 前端异常监控 Sentry 的私有化部署和使用

0 人点赞