Sentry-node
Node v0.10 compatible
A simple Node wrapper around the Sentry API.
Installation
$ npm install sentry-node
Testing
$ npm test
Usage
Creating the Client
var Sentry = require('sentry-node');
You can initialize sentry-node
by passing in a Sentry DSN:
var sentry = new Sentry('<your Sentry DSN>');
You can also pass in the individual parameters that make up the DSN as an object:
var sentry = new Sentry({
key: '<your sentry public key>',
secret: '<your sentry secret key>',
project_id: '<your sentry project id>'
});
Note: If the DSN passed to Sentry
is invalid, the client will be disabled. You will still be able to call its methods, but no data will be sent to Sentry. This can be useful behavior for testing and development environments, where you may not want to be logging errors to Sentry.
Error
sentry.error(err, logger, culprit, extra);
sample
sentry.error(
new Error("The error method expected an Error instance as first argument."),
'/sentry-node.coffee',
"Bad arguments to sentry-node:error method",
{
note: "to test sentry-node error method",
version: "0.1.0"
}
);
arguments
- err: the error object to log, must be an instance of
Error
. err.message
will be used for the smaller text that appears right under culprit
- logger: the place where the error was detected
- culprit: the location of the code that caused the error. If not known, should be
null
. If included, is the big text at the top of the sentry error. - extra: (optional) an object that gives more context about the error, it is augmented with
stacktrace
which contains err.stack
Message
sentry.message(message, logger, extra);
sample
sentry.message(
"message",
"/trial.coffee",
{
note: "to test sentry-node api",
type: "message"
}
);
arguments
- message: text will be used for both the big text that appears at the top and the smaller text appears right under it
- logger: the place where the error was detected
- extra: (optional) an object that gives more context about the message
Wrapper
Wrapper can be used to wrap an async function, which will attempt to log any error's passed to the async function's callback with sentry.
sentry.wrapper(logger, timeout).wrap(some_async_func);
When using wrapper, in case of an error, it's possible to pass extra context parameters by assigning them to the wrapper.globals
variable:
wrapper = sentry_wrapper(logger, timeout)
wrapper.wrap(function(cb) {
if (some_error_case) {
wrapper.globals.context = "some context information to be logged";
cb(new Error("error has occured"));
}
});
sample
wrapped = sentry.wrapper('logger', 1000).wrap(function(callback){
callback(new Error('error to be logged'));
});
wrapped();
arguments
- logger: value used as the logger argument to sentry.error
- timeout: (optional) the timeout (in ms) to wait for sentry to log error. If timeout is exceeded, wrapped async function's callback will return a sentry timeout error.
Events
The Sentry client emits three events that you can listen to:
'logged'
: emitted when an error or message is successfully logged to Sentry'error'
: emitted when an error occurs within the Sentry client and an error or message fails to be logged to Sentry'warning'
:
- emitted when a value of the incorrect type is passed as err or logger
- emitted when a HTTP 429 (burst rate limiting) is returned from Sentry API
sentry.on('logged', function(){
console.log('Yay, it worked!');
});
sentry.on('error', function(e){
console.log('oh well, Sentry is broke.');
console.log(e);
})
sentry.on('warning', function(e){
console.log('You did something sentry didn't expect', e);
})
Best Practices
The Sentry client expects an instance of Error
- if it is given some other object, it will still send the error to Sentry, but much of the error content will be lost. This behavior is intended to align with the node.js best practice of always using Error
instances. This means you should always take care to construct an Error
object with an appropriate message before logging it to Sentry (really, you should always be using Error
objects to represent error data throughout your codebase).
You should always give as much context as possible with your errors. Make liberal use of the extra
parameter to send more information that may help someone (most likely your future self) diagnose the cause of the error.
If you attach other fields with important data to the Error
instance, they will not show up in Sentry automatically. You should make sure to include those fields on the extra
object.
Sentry asks for three main fields:
message
: what was the exception? Always the message from the passed in error.logger
: what piece of code generated the message to Sentry? Usually just whatever application actually holds the Sentry client.extra
: what other information is needed to determine the cause of the error