Dashboard empty
Igor Parra
Posted on
May 24 2015
HI, I have installed raygun for javascript in my web app. Seeing at browser's console all looks good ("logged error to Raygun"), but the raygun dashboard never show anithing. Screenshot attached. I have checked the key and is correct.
Alex
Posted on
May 25 2015
Hi Igor,
I've just sent you an email regarding this.
Cheers,
Alex
Igor Parra
Posted on
May 26 2015
This was due an bug in my development environment that caused send wrong OccurredOn date in the payload. (it will cannot be solved until next version I think.)
So I had to make an small workaround (Raygun4js - v1.18.3 - 2015-05-01, line 1798)
var payload = {
'OccurredOn': new Date().toISOString(), // < --------------- workaround
'Details': {
'Error': {
'ClassName': stackTrace.name,
'Message': finalMessage,
'StackTrace': stack
}
Many thanks Alex!