Conversation
f6463e1 to
a4cc1b6
Compare
PerfectSlayer
approved these changes
Jan 6, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What Does This Do
Relies on an assumption that the initial part of the vmId from
ManagementFactoryis our process id.This is true for all JVMs based on OpenJDK, but may not be true for other JVMs that don't follow this convention:
https://github.com/openjdk/jdk/blob/jdk8-b120/jdk/src/share/classes/sun/management/VMManagementImpl.java#L145
Note that JVMs after Java8 will continue to use the standard
ProcessHandle.current().pid()APIMotivation
PR #4397 added the process-id to all root spans, which means that the process-id is now requested as part of building the tracer in
premain. Unfortunately the JNR/POSIX layer which is used for Java8 only takes some time to initialize, and this leads to a noticeable increase in startup time.On my M1 mac the JNR/POSIX approach takes 0.5 seconds, whereas using
ManagementFactorytakes 0.03 seconds.