
In the Trace Event Format Google Docs, it states that we can put a stack array in duration or complete trace events, just like this:
"stack" : ["string1", "string2", "string3"]
but when I add this into my trace events, and import the json file into the web page, I get this error:
'TypeError: this.model_.resolveStackToStackFrame_ is not a function
at TraceEventImporter.getStackFrameForEvent_ (chrome://tracing/tracing.js:4752:42)
After checking this function on the repo, it seems like the function hasn't been completed yet and returns undefined.
resolveStackToStackFrame_(pid, stack) {
// TODO(alph,fmeawad): Add codemap resolution code here.
return undefined;
}
Just wanted to know if you guys were planning on implementing it soon, and if not, maybe remove it from the google docs for now?
In the Trace Event Format Google Docs, it states that we can put a stack array in duration or complete trace events, just like this:
"stack" : ["string1", "string2", "string3"]
but when I add this into my trace events, and import the json file into the web page, I get this error:
'TypeError: this.model_.resolveStackToStackFrame_ is not a function
at TraceEventImporter.getStackFrameForEvent_ (chrome://tracing/tracing.js:4752:42)
After checking this function on the repo, it seems like the function hasn't been completed yet and returns undefined.
resolveStackToStackFrame_(pid, stack) {
// TODO(alph,fmeawad): Add codemap resolution code here.
return undefined;
}
Just wanted to know if you guys were planning on implementing it soon, and if not, maybe remove it from the google docs for now?