Friday, April 13, 2018

Listening For JS Error Events

I was recently reading a blog article, Ben Nadel JS Error.   In the article Ben showed how to setup an error event handler that would be triggered for any failed image loads on a page.  This was done by attaching an error event handler to the body element.  Also he had to pass the last argument to addEventListener as true so that it would trigger in the capture phase of the event. This event handler will run whenever an external resource like an image or a style sheet fails to load on the page.

After some experimenting I found that if I attach the event to the window object it is triggered for all the failed resources and also for any javascript errors that happen on the page.  Setting this up on a site with quite a bit of traffic from different browsers was very interesting.  It was a bit overwhelming at first until some things were fixed and some checking was added to filter out some of the errors.  In the event handler the event and error information is being posted back to a server and then sent in an email so it can be reviewed.





Several errors showed up right away in IE Edge.  These were things that were looking for IE user agents and doing IE specific things.  Once those were fixed some failed loads for the Google ananlytics script started showing up in Firefox.  After doing a little testing I realized that Firefox blocks that script from loading if you have the "Do Not Track" option turned on. An error event is still generated, however, so the script was modified to skip those errors.

I went through several iterations of the script sending different information from the error event object.  Currently this is the script that is being used:


Initially values is set to contain the location of the current page so that information will always be available.  Then if the event contains an error object the stack and message are set into values.

Then all keys in the event object are looped over to get all the values.  If the value has an outerHTML method then that is called to get the value.  I'm using slice to limit the size of the outer HTML in case it is a large element containing many other elements.  Otherwise if the value contains a toString method then that is called.

After that the values object is converted to JSON.  This is only used as an easy way to filter out the analytics errors that are generated in Firefox.  Finally the results are posted to the server.  On the server those values, along with some other information from the post request like the user agent, are emailed.

It has been pretty interesting to see all these errors.  I still need to filter some things out and try to get some more information about some errors that don't seem to have a cause.  I think it will be very valuable to have this going forward.




No comments:

Post a Comment

Coding

  I'm not sure where I heard this, and it wasn't worded this way, but it helps to think about coding this way. Basically, any progra...