Track Errors with Google Analytics
// Track basic JavaScript errors | |
window.addEventListener('error', function(e) { | |
_gaq.push([ | |
'_trackEvent', | |
'JavaScript Error', | |
e.message, | |
e.filename + ': ' + e.lineno, | |
true | |
]); | |
}); | |
// Track AJAX errors (jQuery API) | |
$(document).ajaxError(function(e, request, settings) { | |
_gaq.push([ | |
'_trackEvent', | |
'Ajax error', | |
settings.url, | |
e.result, | |
true | |
]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment