My project which contains a lot of pages with forms. This is a backend of banking CRM system, so any error during working process is to be captured and investigated. On the server side we have enhanced java exceptions system, but if error occurs on client side - javascript the only info we now get is an js-error window in IE or sometimes a screenshot of page made by advanced user.
Javascript code contains both Jquery-powered UI extensions and hard-coded inline event handlers and functions.
So I am asking whether any approach for capturing js-errors of any kind could be used? some additional library or something that could give me a stacktrace like firebug in Mozilla or web-console in Chrome?
If your website is using Google Analytics, you can do what I do:
A few comments on the code above:
Once the code is in place, this is how you view your users' Javascript errors:
Behavior
section and then theTop Events
report.window.onerror
in the list.Secondary dimension
button and enteringEvent Label
in the textbox that appears.I recommend to use JsLog.me service
It can capture whole console output in addition to errors and stacktraces. We use it in our projects, logging whole console log helps our QA team to record issue-reproduction way. Also, it works well with large JSON objects like in Chrome console, and has a search.
Atatus captures JavaScript errors and also captures the user actions that preceded the error. This would help in better understanding of the error. Atatus helps you in monitoring your frontend, not just for errors, but also its performance(Real User Monitoring)
https://www.atatus.com/
Disclaimer: I’m a web developer at Atatus.
Look into
window.onerror
. If you want to capture any errors, and report them to the server, then you could try an AJAX request, perhaps.If you want to do painless implementation just put up this guys javascript code in your app. Else If you want to implement one, then try this to get the stacktrace on
window
error
and you can useajax
to report the errors. A nice way to track errors reported by olarkDisclaimer: I'm CEO and creator of Sentry, an open source and paid service which does crash reporting for many languages, including Javascript.
It can be pretty challenging to capture frontend exceptions. Technology has gotten better (browser JS engines), but there's still a lot of limitations.
window.onerror
for various reasons (mostly because browsers historically give bad information here). What we do in the raven.js client (which is based on TraceKit) is patch a number of functions to wrap them in try/catch statements. For example,window.setTimeout
. With this we're able to install error handlers that will generate full stacktraces in most browsers.Some things you should be aware of on the server: