-
Notifications
You must be signed in to change notification settings - Fork 175
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
6913: Add daemon thread information to the console threads view #110
Conversation
Hi @jpstotz, welcome to this OpenJDK project and thanks for contributing! We do not recognize you as Contributor and need to ensure you have signed the Oracle Contributor Agreement (OCA). If you have not signed the OCA, please follow the instructions. Please fill in your GitHub username in the "Username" field of the application. Once you have signed the OCA, please let us know by writing If you already are an OpenJDK Author, Committer or Reviewer, please click here to open a new issue so that we can record that fact. Please use "Add GitHub user jpstotz" as summary for the issue. If you are contributing this work on behalf of your employer and your employer has signed the OCA, please let us know by writing |
d6942f8
to
398f559
Compare
/signed |
Thank you! Please allow for up to two weeks to process your OCA, although it is usually done within one to two business days. Also, please note that pull requests that are pending an OCA check will not usually be evaluated, so your patience is appreciated! |
Hi @jpstotz ! The new daemon column looks okay and works well. Having said that, this won't work on jvms running on jdk8 [0]; the daemon information is added to Let me know if you need a JIRA issue created for this PR and I can set one up. [0] https://docs.oracle.com/javase/8/docs/api/java/lang/management/ThreadInfo.html |
@aptmac Thanks for reviewing my patch. As mitigation I would assume that the best way would be to check the Java version number before adding the I will check this out and update my patch. Regarding the JIRA issue this would be nice of you. |
@jpstotz Great, I've created a JIRA issue for this enhancement, it can be found at: https://bugs.openjdk.java.net/browse/JMC-6913 |
@aptmac I just noticed that you were not talking about the JVM running JMC but about the JVM JMC is connected to. That makes a version check a bit more complicated, at least I don't see a way to do so with my limited knowledge on JMC. My current approach uses a Getter in Do you think this is a suitable approach? |
Webrevs
|
Yes, catching the exception in the |
…mon() in java.lang.management.ThreadInfo
@aptmac Sorry for the delay, it took me some time to understand how the information extraction from other JVMs in Missioncontrol works. In the end I rejected some approaches I first had in mind and ended up with an simple approach that checks if the daemon data has been extracted from the target JVM and if not returns the "data not available" message instead of the actual daemon data. Hopefully my current approach is what you had in mind when speaking about a clean solution. The two other approaches you mentioned like |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jpstotz Thank you for the revision, this is what I had in mind. I think the code looks good, and I verified that the correct messages are showing on a jdk8 jvm vs. a jdk11 jvm.
One minor nit is that the message texts don't usually end in a period, so other than that needing being changed this looks okay to me.
...nsole.ui/src/main/resources/org/openjdk/jmc/console/ui/messages/internal/messages.properties
Outdated
Show resolved
Hide resolved
@aptmac I fixed the message text as you suggested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, the changes look okay to me.
The PR will require at least one more review before it's formally approved and ready to integrate.
|
@jpstotz This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 24 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@aptmac, @guruhb) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
/reviewers 2 |
@thegreystone |
|
@thegreystone |
1 similar comment
@thegreystone |
|
@jpstotz This change is no longer ready for integration - check the PR body for details. |
@thegreystone |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
@jpstotz - you can now type /integrate in a new message to integrate the changes. Thanks for your contribution! |
/integrate |
@guruhb - you can sponsor now. |
/sponsor |
@guruhb @jpstotz Since your change was applied there have been 26 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 47e197f. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
…38ef4332f7744a-sap sap: Merge 23fb4f2
I had an Java application which did not exit because of a non-daemon thread still running. Therefore I added a column to the treads view that displays if a thread is a daemon thread or not.
oca: has been signed on 2019-01-17 (got positive response from Dalibor Topic on 2019-01-23).
Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jmc pull/110/head:pull/110
$ git checkout pull/110