Page MenuHomePhabricator

In "--trace" output, print elapsed miliseconds for ballparking performance issues
ClosedPublic

Authored by epriestley on Aug 3 2018, 10:09 PM.
Tags
None
Referenced Files
F15473885: D19565.diff
Sun, Apr 6, 3:01 AM
F15451581: D19565.diff
Fri, Mar 28, 10:49 PM
F15449476: D19565.id46775.diff
Fri, Mar 28, 10:32 AM
F15444302: D19565.id.diff
Thu, Mar 27, 8:58 AM
F15442811: D19565.diff
Thu, Mar 27, 12:36 AM
F15413278: D19565.id46775.diff
Wed, Mar 19, 5:45 PM
F15399008: D19565.id46773.diff
Mon, Mar 17, 2:24 AM
Unknown Object (File)
Jan 28 2025, 3:59 AM
Subscribers
None

Details

Summary

Ref T13164. See PHI766. On PHI766, we saw a slow command on a production host with no ready access to XHProf / --xprofile.

We can reasonably turn --trace into a rough-cut profiler by adding milliseconds-since-start. Then --trace output is good enough to at least roughly ballpark where slowness is happening in many cases. This isn't as good as real profile and won't always be helpful, but at least some of the time it can at least give us enough information to know if, e.g., we should break out the profiler or not.

Test Plan

Ran bin/harbormaster rebuild-log --id ... --trace --force, got milliseconds-since-start in output and some vague idea about where time was being spent.

Diff Detail

Repository
rPHU libphutil
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

amckinley added inline comments.
src/serviceprofiler/PhutilServiceProfiler.php
200

I thought this should have been $elapsed / 1000, but now I've read the docs for microtime(true) and this is why I have trust issues.

This revision is now accepted and ready to land.Aug 3 2018, 10:56 PM
This revision was automatically updated to reflect the committed changes.