Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjustments to the 2020 description of wallclock profiling for the JVM #27493

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/en/profiler/profile_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Heap Live Size (in Preview, 1.39.0+)
_Requires: Java 11.0.23+, 17.0.11+, 21.0.3+ or 22+_ <br />

Wall Time in Native Code
: The elapsed time spent in native code. Elapsed time includes time when code is running on CPU, waiting for I/O, and anything else that happens while the method is running. This profile does not include time spent running JVM bytecode, which is typically most of your application code.
: The elapsed time spent by each method. Elapsed time includes time when code is running on CPU, waiting for I/O, and anything else that happens while the method is running.

Class Load
: The number of classes loaded by each method.
Expand Down
Loading