e0db9a16f9
commit 9c498697c9
issue https://github.com/TryGhost/Team/issues/694
`process.env.npm_package_version` is only filled when Ghost is started via npm scripts, so it would have been empty when starting Ghost using `node index.js`
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
const config = require('./config');
|
|
const sentryConfig = config.get('sentry');
|
|
const errors = require('@tryghost/errors');
|
|
|
|
if (sentryConfig && !sentryConfig.disabled) {
|
|
const Sentry = require('@sentry/node');
|
|
const version = require('../../package.json').version;
|
|
const environment = config.get('env');
|
|
Sentry.init({
|
|
dsn: sentryConfig.dsn,
|
|
release: 'ghost@' + version,
|
|
environment: environment
|
|
});
|
|
|
|
module.exports = {
|
|
requestHandler: Sentry.Handlers.requestHandler(),
|
|
errorHandler: Sentry.Handlers.errorHandler({
|
|
shouldHandleError(error) {
|
|
// Sometimes non-Ghost issues will come into here but they won't
|
|
// have a statusCode so we should always handle them
|
|
if (!errors.utils.isIgnitionError(error)) {
|
|
return true;
|
|
}
|
|
|
|
// Only handle 500 errors for now
|
|
// This is because the only other 5XX error should be 503, which are deliberate maintenance/boot errors
|
|
return (error.statusCode === 500);
|
|
}
|
|
}),
|
|
captureException: Sentry.captureException
|
|
};
|
|
} else {
|
|
const expressNoop = function (req, res, next) {
|
|
next();
|
|
};
|
|
|
|
module.exports = {
|
|
requestHandler: expressNoop,
|
|
errorHandler: expressNoop,
|
|
captureException: () => {}
|
|
};
|
|
}
|