Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logga fel på användarsidan till Google Analytics #31

Open
trycoon opened this issue Feb 1, 2017 · 0 comments
Open

Logga fel på användarsidan till Google Analytics #31

trycoon opened this issue Feb 1, 2017 · 0 comments

Comments

@trycoon
Copy link
Owner

trycoon commented Feb 1, 2017

Mycket av den viktigare delen av applikationen kör på klientsidan hos användaren, t.ex. när man granskar och redigerar en karta. Fel som uppstår där syns inte i felloggar hos oss, fel som vi möjligtvis kan rätta till.
Vi bör fånga dessa fel och logga dessa till Google Analytics för att lättare fånga upp fel och åtgärda dessa. Här är ett förslag: https://www.youtube.com/watch?v=__KvYxcIIm8&feature=youtu.be&t=2219

windows.onerror = function(msg, file, line, column, error) {
try {
if (error) {
msg = error.stack;
}

ga('send', 'event', 'error', (file + ':' + line), msg);

} catch () {
// ignore
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant