You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
have a bit of conundrum. All the 3 measurements for bootup-time metric (scripting, total, scriptParseCompile are working for most of my scripts in my site. However, there is one, quite important one, that the scripting metric is equal 0.
My questions is - what could be a possible reason for not being able to measure that metric?
The scriptParseCompile is measured if that could suggest some sort of answer to this specific problem.
The text was updated successfully, but these errors were encountered:
Certain types of async work are not attributable to any script given the way we currently instrument the page. If the script does mostly this type of work, then you might end up seeing 0 ms of script execution for it. We want to try to close this loophole, but it is at least several months away as the workaround is quite expensive.
If it's not doing any async work and it's pretty much all in a single EvaluateScript that we aren't capturing, then a repro URL would be super helpful :)
Hello,
have a bit of conundrum. All the 3 measurements for
bootup-time
metric (scripting
,total
,scriptParseCompile
are working for most of my scripts in my site. However, there is one, quite important one, that thescripting
metric is equal0
.My questions is - what could be a possible reason for not being able to measure that metric?
The
scriptParseCompile
is measured if that could suggest some sort of answer to this specific problem.The text was updated successfully, but these errors were encountered: