Node BitBucket Logging
Node BitBucket Logging is a custom log issue handler that has been written with the purpose of auto-opening (and assigning) issues on BitBucket everytime something goes south with NodeJS code.
Useful for production deployments, where you want to track the issues directly from BitBucket, not from a dark server log file.
Node BitBucket Logging is smart enough to recognize similar errors, thus not opening blindly a new issue everytime.
Setup
-
Add bitbucket-logging
to your package.json dependencies.
-
Then, require and configure the module using the code below:
bitbucket_logging = require('bitbucket-logging');
bitbucket_logging.configure({
slug:"PROJECT_NAME",
owner:"OWNER",
username:"USERNAME",
password:"PASSWORD",
environment: 'production'
});
- Then, when you need to handle an error, just call:
bitbucket_logging.handle(error, callback);
- If you need to catch all unhandled errors (which is recommended!), use the following code:
process.on('uncaughtException', function(error) {
var error_message = error.stack || error;
console.error('uncaughtException', error_message);
bitbucket_logging.handle(error_message, function{
process.exit(1);
});
});
Notes