Skip to content
This repository was archived by the owner on Dec 5, 2022. It is now read-only.

add support for custom performance entries #187

Merged
merged 3 commits into from
Sep 26, 2017
Merged

Conversation

vigneshshanmugam
Copy link
Collaborator

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.

Pipe.addPerfEntry("time-to-meaningful-paint", 2000.00) // done from some fragment on some page

Pipe.getEntries()
// [{
   name: "time-to-meaningful-paint",
   duration: 2000.00,
   entryType: "tailor",
   startTime: // start time relative to navigation start
}]

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)?

  • User Timing - mark and measure 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.

var customEntry = {};
customEntry.prototype = PerformanceEntry;
customEntry.name = "ttfmp";
customEntry.duration = Number(paint); // custom paint timing
customEntry.entryType = "tailor";
customEntry.startTime = performance.now();


// retrive entries
performance.getEntries(); 
// returns []

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/

@codecov
Copy link

codecov bot commented Sep 26, 2017

Codecov Report

Merging #187 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           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.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6f6cd8a...41c1d74. Read the comment docs.

@addityasingh
Copy link
Contributor

👍

name: name,
duration: Number(duration),
entryType: 'tailor',
startTime: perf.now() || Date.now() - perf.timing.navigationStart
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

navigationStart is always available?

Copy link
Collaborator Author

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.

Copy link
Collaborator Author

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.

@DeTeam
Copy link
Contributor

DeTeam commented Sep 26, 2017

👍

1 similar comment
@vigneshshanmugam
Copy link
Collaborator Author

👍

@vigneshshanmugam vigneshshanmugam merged commit f203b7a into master Sep 26, 2017
@vigneshshanmugam vigneshshanmugam deleted the custom-entries branch September 26, 2017 15:12
jukey added a commit that referenced this pull request Nov 22, 2017
vigneshshanmugam pushed a commit that referenced this pull request Nov 24, 2017
* cpied expnations from PR #187 to doc

* toc updated

* updated according to comments from Vignesh
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants