I would like to connect sentry monitoring to my kue app. How should it be done? I see in docs how to do it for plain node.js:
var client = new raven.Client(...);
client.captureError(new Error('Uh oh!!'));
But I would like to have the express style:
app.use(raven.middleware.express(...));
So that sentry will catch errors for me, instead of calling client.captureError manually. Maybe it is simple, I am using kue for the first time, will appreciate any help.
Thanks.