-
Notifications
You must be signed in to change notification settings - Fork 141
add support for custom performance entries #187
Conversation
Codecov Report
@@ Coverage Diff @@
## master #187 +/- ##
=======================================
Coverage 98.29% 98.29%
=======================================
Files 14 14
Lines 586 586
Branches 104 104
=======================================
Hits 576 576
Misses 10 10 Continue to review full report at Codecov.
|
👍 |
name: name, | ||
duration: Number(duration), | ||
entryType: 'tailor', | ||
startTime: perf.now() || Date.now() - perf.timing.navigationStart |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
navigationStart
is always available?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch, i forgot to add a check for navigation timing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed now, we should add the entry itself since it will result in skewed metrics.
👍 |
1 similar comment
👍 |
What?
This PR adds the support for fragment teams to add custom metrics that looks similar to PerformanceEntry that can be retrieved via tailor in addition to the hooks it supports.
Why?
Browsers right now does not expose an API for creating custom PerformanceEntry and make them available on PerformanceTimeline.
why not
perfomance.measure
(User Timing)?mark
andmeasure
does not allow a way for pushing custom timing information. If you already have a metric and want to pass that information to PerformanceEntry you cannot do that right now with User Timing API.why not extend PerformanceEntry?
Even if we hack and extend the PerformanceEntry object, there is no way to retrive the custom entries that are added.
Future
There is a existing issue and proposal in w3c web perf group on exposing the API. So once its landed, we can fallback to that or continue to use them for older browsers.
Issue - w3c/charter-webperf#28
Proposal - https://docs.google.com/document/d/1_zm9JB-Ul_fOtAMnF6yBcmvNL3m4-k4ram4pdMIcIug/