-
Notifications
You must be signed in to change notification settings - Fork 618
Comparing changes
Open a pull request
base repository: google/pprof
base: 4bfdf5a
head repository: google/pprof
compare: d1b30fe
Commits on May 28, 2024
-
fix: fix miss makezero bug (#867)
Signed-off-by: alingse <alingse@foxmail.com>
Configuration menu - View commit details
-
Copy full SHA for 186aa03 - Browse repository at this point
Copy the full SHA 186aa03View commit details
Commits on Jun 18, 2024
-
Bump actions/checkout from 4.1.6 to 4.1.7 (#873)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@a5ac7e5...692973e) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d3b898a - Browse repository at this point
Copy the full SHA d3b898aView commit details
Commits on Jun 22, 2024
-
Bump codecov/codecov-action from 4.3.1 to 4.5.0 (#872)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.3.1 to 4.5.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@5ecb98a...e28ff12) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c177fd9 - Browse repository at this point
Copy the full SHA c177fd9View commit details
Commits on Jun 25, 2024
-
Allow text selection in flamegraph view. (#874)
Previously, the click handler would fire after some text was selected with the mouse. This would switch pivots and forget the selected text. We now switch the pivot only if the mouse did not move significantly between mouse-down and mouse-up. Fixes #870.
Configuration menu - View commit details
-
Copy full SHA for 27f5697 - Browse repository at this point
Copy the full SHA 27f5697View commit details
Commits on Jul 11, 2024
-
Fix stacking order of profile details box. (#878)
Previously the profile details box (displayed when clicking button at top-right of web view), would partially overlap flame graph text. Tweak z-index values to fix this problem. Also, colocate all z-index CSS entries to make the stacking order of different things easier to compare.
Configuration menu - View commit details
-
Copy full SHA for f6c9dda - Browse repository at this point
Copy the full SHA f6c9ddaView commit details
Commits on Jul 21, 2024
-
Bump actions/setup-go from 5.0.1 to 5.0.2 (#880)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.0.1 to 5.0.2. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@cdcb360...0a12ed9) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 7089f98 - Browse repository at this point
Copy the full SHA 7089f98View commit details
Commits on Jul 22, 2024
-
Speed-up flame graph generation by skipping unneeded work. (#881)
Previously, we used to call report.TextItems() during flame graph generation just so we could get a hand on the legend to print in the profile details box. All the work done by TextItems() to produce a trimmed graph was discarded. This change separates out the legend generation into a separate routine so that we can avoid doing the unnecessary work. Benchmark result: ``` name old time/op new time/op delta Flame-12 6.10s ± 3% 0.39s ± 4% -93.59% (p=0.000 n=10+10) ```
Configuration menu - View commit details
-
Copy full SHA for 304e4f0 - Browse repository at this point
Copy the full SHA 304e4f0View commit details
Commits on Jul 27, 2024
-
Use llvm-symbolizer's JSON output for symbolizing (#879)
In some edge cases (e.g. injected JIT symbols), function names can have new lines. This breaks the llvm-symbolizer output parsing, and makes pprof hang. Conveniently, as of LLVM 13, llvm-symbolizer has a JSON output mode, which is robust against all kinds of weirdness like new lines. We can use this instead of the line-based parsing, and as a bonus we get much simpler handling of multiple frames in a stack, as the JSON output already returns these as an array. This also requires splitting the CODE and DATA processing into separate functions, since their JSON output is incompatible. For now, we keep the DATA output as before, a slightly hacky but functional concatenation of start + size, but this could be improved. Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 813a5fb - Browse repository at this point
Copy the full SHA 813a5fbView commit details
Commits on Aug 27, 2024
-
Update runner to Go 1.22,1.23 (two most recent releases). (#887)
* Update runner to Go 1.22,1.23 (two most recent releases). * Update runner to Go 1.22,1.23 (two most recent releases). * Update Go mod to 1.22 as well. * Update staticcheck to 0.5.1 so it works with 1.23 code * Update golangci-lint to 1.60.3. v1.51 fails with errors related to old slices package. * Require Go 1.22 for bootstrapping Go tip * Github actions do not support else statements * Another attempt at Workflow syntax * Another attempt at Workflow syntax * Fix caching for Go bootstrap compiler * Fix caching for Go bootstrap compiler * Fix caching for Go bootstrap compiler * Fix caching for Go bootstrap compiler * Fix caching for Go bootstrap compiler * Fix caching for Go bootstrap compiler * Fix caching for Go bootstrap compiler * Add comments saying why we need cache directives
Configuration menu - View commit details
-
Copy full SHA for fa2c70b - Browse repository at this point
Copy the full SHA fa2c70bView commit details
Commits on Aug 29, 2024
-
Add doc URL to profile format and use it display help link. (#888)
* Add doc URL to profile format and use it display help link. * Add test for Report.DocURL * Update new proto field comment
Configuration menu - View commit details
-
Copy full SHA for da1f7e9 - Browse repository at this point
Copy the full SHA da1f7e9View commit details
Commits on Sep 3, 2024
-
Added doc link to profile header. (#892)
Output looks something like: ``` % pprof -top ... File: ... Build ID: ... Type: cpu Doc: http://example.com/cpuprofile Duration: 6.71s, Total samples = 5.72s (85.30%) Showing nodes accounting for 5.17s, 90.38% of 5.72s total Dropped 326 nodes (cum <= 0.03s) ... ```
Configuration menu - View commit details
-
Copy full SHA for a8630ae - Browse repository at this point
Copy the full SHA a8630aeView commit details
Commits on Sep 10, 2024
-
Remove unnecessary symbols and add missing symbols (#893)
Signed-off-by: cuishuang <imcusg@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a0b0bb1 - Browse repository at this point
Copy the full SHA a0b0bb1View commit details
Commits on Sep 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e2af92c - Browse repository at this point
Copy the full SHA e2af92cView commit details -
Display hovered box details immediately. (#897)
Display the details (name + samples) of the currently hovered box above the flame graph. If no box is currently being hovered over, we display the total samples in the flame graph. Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for fa3061b - Browse repository at this point
Copy the full SHA fa3061bView commit details
Commits on Sep 27, 2024
-
Support different display granularities in flame graph view. (#896)
* Support different display granularities in flame graph view. Previously, flame-graph view could only display filefunctions granularity. We can now support all the available granularities. This allows the user to supply a granularity either via a command-line flag (e.g., --files), or as a URL parameter (e.g., ?g=files). Details * Made the default initial granularity "" so that we can stick with the default flame-graph granularity of "filefunctions" while also allowing overrides. * Use different computation of the list of shorter display names for file names (strip off leading path components instead of package prefixes). * Similarly compute color based on directory name instead of package name. * Include line number and column number in displayed names if the granularity includes line numbers. * Improve granularity entry for options command --------- Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d43a673 - Browse repository at this point
Copy the full SHA d43a673View commit details -
Configuration menu - View commit details
-
Copy full SHA for cba816a - Browse repository at this point
Copy the full SHA cba816aView commit details -
Locate symbolz endpoint with deeper paths (#894)
- `http://HOST/profilez` -> `http://HOST/symbolz` - `http://HOST/some/deeper/path/profilez` -> `http://HOST/some/deeper/path/symbolz` Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f3f46ee - Browse repository at this point
Copy the full SHA f3f46eeView commit details
Commits on Sep 29, 2024
-
Use llvm-symbolizer's JSON output to provide function start lines (#891)
* Use llvm-symbolizer's JSON output to provide function start lines When analyzing a perf.data profile converted automatically via perf_to_profile via pprof -raw perf.data, no function start lines (s=0) are present in any of the locations. With 813a5fb, this can be easily solved by using the same JSON frame data from llvm-symbolizer to provide StartLine for Function.start_line. This solves #823. * Fixed TestPEFile windows test * Fixed TestMachoFiles mac tests * Fix making sure llvm-symbolizer is available in the CI env for Linux tests Modify the `Fetch dependencies` step in `test-linux` job to include the installation of llvm. Add `Verify llvm-symbolizer installation` step to ensure that llvm-symbolizer is available in the CI environment for the Linux tests. This should resolve the test failures related to the missing llvm-symbolizer tool. * ci: Improve LLVM installation for Ubuntu 20.04 and 22.04 Enhances the CI workflow to ensure proper installation of LLVM and the `llvm-symbolizer` across both Ubuntu 20.04 and 22.04 environments. These changes address the issue of an outdated llvm-symbolizer on Ubuntu 20.04, while maintaining compatibility with Ubuntu 22.04. - Add LLVM official repository for Ubuntu 20.04 - Install LLVM 14 on Ubuntu 20.04 to ensure a recent version - Use update-alternatives to manage llvm-symbolizer versions - Maintain existing LLVM 14 for Ubuntu 22.04 * ci: Make it clear that our goal is to install llvm-symbolizer --------- Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 255acd7 - Browse repository at this point
Copy the full SHA 255acd7View commit details
Commits on Oct 1, 2024
-
Bump actions/checkout from 4.1.7 to 4.2.0 (#900)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@692973e...d632683) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f4c0cfd - Browse repository at this point
Copy the full SHA f4c0cfdView commit details
Commits on Oct 8, 2024
-
Bump actions/checkout from 4.2.0 to 4.2.1 (#902)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@d632683...eef6144) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1484601 - Browse repository at this point
Copy the full SHA 1484601View commit details -
Bump codecov/codecov-action from 4.5.0 to 4.6.0 (#901)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.5.0 to 4.6.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@e28ff12...b9fd7d1) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 332c0e1 - Browse repository at this point
Copy the full SHA 332c0e1View commit details
Commits on Oct 9, 2024
-
tui: use RFC3339-alike format with second precision for "Time" (#903)
The current time format (Jan 2, 2006 at 3:04pm (MST)) has a few issues: - It displays time at minute granularity, while profiles usually have have second-level (and more[^go]) granularity. - It uses a 12-hour clock, which is tricky to handle at AM/PM switchovers, for people (like myself) who are not used to it. By contrast, a 24-hour clock is unambiguous. - Minor: using names for months makes it more difficult to calculate with time differences. Hence, I propose replacing it with an RFC3339-alike format, with spaces between elements for better readability. [^go]: https://github.com/golang/go/blob/3aa71c12eacd68ec16e7172d92aa5c6af32f0c3b/src/runtime/pprof/proto.go#L351
Configuration menu - View commit details
-
Copy full SHA for a352233 - Browse repository at this point
Copy the full SHA a352233View commit details
Commits on Oct 17, 2024
-
Update kernel base to work for non-KASLR kernels. (#904)
Replace an existing check for "start >= loadSegment.Vaddr" with "start >= 0x8000000000000000". The old condition was checking for the mapping start address to be greater or equal to the program segment Vaddr. However, for kernels without KASLR, the mapping start address (start) is less or equal the program header Vaddr. If the program header that includes the '.text' section is not the first segment, then the mapping start is strictly less than loadSegment.Vaddr. Instead of removing the condition, we replace it with a check that start is in the kernel address space, so we don't take this path for user space binaries. Adjusted the test case for PIE kernels to match actual addresses seen for a non-KASLR kernel. The new test fails with the old code and succeeds now.
Configuration menu - View commit details
-
Copy full SHA for 017d972 - Browse repository at this point
Copy the full SHA 017d972View commit details
Commits on Oct 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4cf4322 - Browse repository at this point
Copy the full SHA 4cf4322View commit details
Commits on Oct 23, 2024
-
Allow symbolz to try symbolize unsymbolizable mappings. (#907)
We added skipping unsymbolizable mappings in symbolz long time ago in PR #368 to address #339 where we saw error like "unexpected negative adjusted address". But that error was fixed in a more proper way in subsequent #397 to fix another reported issue #280 (and internal b/32020573). So skipping unsymbolized mappings shouldn't be needed anymore. I tested this by verifying that the test case from #339 still works fine with the proposed change. And that it does fail if I roll back #397 locally. This change is useful as we experiment with using symbolz to symbolize JIT locations from //anon (which is unsymbolizable per current terminology). Co-authored-by: Maggie Nolan Edmonds <nolanmar@google.com>
Configuration menu - View commit details
-
Copy full SHA for 5986699 - Browse repository at this point
Copy the full SHA 5986699View commit details
Commits on Oct 29, 2024
-
Bump actions/setup-go from 5.0.2 to 5.1.0 (#909)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.0.2 to 5.1.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@0a12ed9...41dfa10) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 833c56d - Browse repository at this point
Copy the full SHA 833c56dView commit details -
Bump actions/checkout from 4.2.1 to 4.2.2 (#908)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@eef6144...11bd719) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d1b30fe - Browse repository at this point
Copy the full SHA d1b30feView commit details
There are no files selected for viewing