yeller is a
Shipping bugs really sucks
These bugs made it past your test suite, , past your reasoning about the system, past your careful manual checking and into your customers' hands.
So, once you know about a bug, you need to fix it as fast as possible. This means you need to find out exactly what happened, with all the useful and relevant information at your fingertips.
How do you find out if an error has been happening a whole bunch of times? By SCPing a bunch of log files and grepping through them?
That's not good enough for production
You need to be able to deduplicate your errors smartly, so you can see what's broken
You need a full stacktrace, and logging of arbitrary data on every error.
You need Yeller.
Yeller tracks the errors your customers hit in production so you can fix them faster.
Yeller's Node client is fully open source, and there are detailed install instructions in the repository
var yeller = require('./yeller_node')
var yellerClient = yeller.client({token: 'YOUR_API_TOKEN_HERE'})
try {
// your code here
} catch (e) {
yellerClient.report(e, {customData: {user: {id: user.id}}});
}
Yeller grabs all the relevant context from your exceptions, so you can figure out what went wrong quickly.
Yeller automatically investigates each of your exceptions across every time they happen, and picks out any unique piece of context
Find out about exceptions that were:
Most exceptions in production are caused by code changes.
Yeller can track your deploys, and highlight the deploy that likely caused the exception you're debugging.
If you use github, Yeller will even link to a diff of what was deployed, so you can see what changed immediately.