mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 07:02:26 +00:00
35 lines
1019 B
JavaScript
35 lines
1019 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Programmatic upload middleware. We do not want to export it
|
||
|
* @param {{ strapi: import('@strapi/strapi').Strapi }}
|
||
|
*/
|
||
|
module.exports = ({ strapi }) => {
|
||
|
const sentry = strapi.plugin('sentry').service('sentry');
|
||
|
sentry.init();
|
||
|
|
||
|
strapi.server.use(async (ctx, next) => {
|
||
|
try {
|
||
|
await next();
|
||
|
} catch (error) {
|
||
|
sentry.sendError(error, (scope, sentryInstance) => {
|
||
|
scope.addEventProcessor(event => {
|
||
|
// Parse Koa context to add error metadata
|
||
|
return sentryInstance.Handlers.parseRequest(event, ctx.request, {
|
||
|
// Don't parse the transaction name, we'll do it manually
|
||
|
transaction: false,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// Manually add transaction name
|
||
|
scope.setTag('transaction', `${ctx.method} ${ctx.request.url}`);
|
||
|
// Manually add Strapi version
|
||
|
scope.setTag('strapi_version', strapi.config.info.strapi);
|
||
|
scope.setTag('method', ctx.method);
|
||
|
});
|
||
|
|
||
|
throw error;
|
||
|
}
|
||
|
});
|
||
|
};
|