Perl 把哨兵和魔术师结合起来

Perl 把哨兵和魔术师结合起来,perl,sentry,mojolicious,Perl,Sentry,Mojolicious,有没有一种解决方案可以自动将莫乔利斯的错误发送给哨兵?对于Express,它与 Sentry.init({ dsn: 'http://asdf@sentry.somwhere/2', }) const app = express() // The request handler must be the first middleware on the app app.use(Sentry.Handlers.requestHandler()) 是的,有一些插件可以做到这一点: )

有没有一种解决方案可以自动将莫乔利斯的错误发送给哨兵?对于Express,它与

Sentry.init({
    dsn: 'http://asdf@sentry.somwhere/2',
})

const app = express()

// The request handler must be the first middleware on the app
app.use(Sentry.Handlers.requestHandler())

是的,有一些插件可以做到这一点:

  • )