Figured it out. I'm not sure why they do not do this as an inline report, but maybe someday.
I made my own widget in the control panel with an Exception Description for measurement and Failures for the metric:

Which gives me a report like this:

You can also go to the Customization tab and create your own report to give you an error table, and then add it to your dashboard.

Used with this global exception handler
if (typeof window.onerror == "object") { window.onerror = function (err, url, line) { if (ga) { ga('send', 'exception', { 'exDescription': line + " " + err }); } }; }
You can place this handler anywhere in your Javascript initialization - it depends on how you configured all your JS files. Alternatively, you can simply put it in the <script> tag next to the html tag tag.
Simon_Weaver Feb 12 '14 at 4:21 2014-02-12 04:21
source share