This package is a wrapper for sentry library. It allows you to simply use latest Sentry SDK on both client and a server in your meteor application.
Errors from browser console and server will be automatically captured without any complicated configuration.
This package is MIT Licensed.
meteor add nodsec:sentry
The same interface can be used on a client and server.
Sentry package is possible configure in Meteor.settings
{
"SENTRY": {
"public" : {
"enabled" : true,
"dsn" : "https://..............ingest.sentry.io/1234567",
"debug" : true,
"tracesSampleRate" : 1
},
"enabled" : true,
"dsn" : "https://..............ingest.sentry.io/1234568",
"debug" : true,
"tracesSampleRate" : 1
}
}
import SentryLogger from 'meteor/nodsec:sentry';
Logger.init();
import SentryLogger from 'meteor/nodsec:sentry';
Logger.info('Something happened', {
userId: getUserId()
});
Logger has methods for all Sentry severity levels, such as:
SentryLogger.error()
SentryLogger.fatal()
SentryLogger.warning()
SentryLogger.info()
SentryLogger.debug()
SentryLogger.critical()
each method has following signature:
function ( event, extra )
Returns: string
- sentry event id.
Param | Type | Description |
---|---|---|
event | Error \ string |
event that is being logged |
extra | object |
any extra params you want to pass |
Any unhandled exceptions that happen on the client or server should be automatically logged to Sentry. Nothing to configure there.
If you wish to postprocess an event somehow - for instance log it to the console, you can pass a custom function in initialization.
import SentryLogger from 'meteor/nodsec:sentry';
Logger.init({
postprocess: function(level, event, extra) {
console.log(`[${level}] - ${event}`, extra);
}
});