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

6913: Add daemon thread information to the console threads view #110

Closed
wants to merge 4 commits into from

Conversation

jpstotz
Copy link
Contributor

@jpstotz jpstotz commented Sep 17, 2020

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

  • Commit message must refer to an issue
  • Change must be properly reviewed

Issue

  • JMC-6913: Add daemon thread information to the console threads view

Reviewers

Download

$ git fetch https://git.openjdk.java.net/jmc pull/110/head:pull/110
$ git checkout pull/110

Sorry, something went wrong.

@bridgekeeper bridgekeeper bot added the oca label Sep 17, 2020
@bridgekeeper
Copy link

bridgekeeper bot commented Sep 17, 2020

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 /signed in a comment in this pull request.

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 /covered in a comment in this pull request.

@jpstotz
Copy link
Contributor Author

jpstotz commented Sep 17, 2020

/signed

@bridgekeeper
Copy link

bridgekeeper bot commented Sep 17, 2020

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!

@aptmac
Copy link
Member

aptmac commented Sep 23, 2020

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 java.lang.management.ThreadInfo as of jdk9 [1], and trying to use this column on a jdk8 jvm results in an error dialog (which when paired with the polling nature of the console pages makes this rather difficult to close jmc).

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
[1] https://docs.oracle.com/javase/9/docs/api/index.html?java/lang/management/ThreadInfo.html

@jpstotz
Copy link
Contributor Author

jpstotz commented Sep 24, 2020

@aptmac Thanks for reviewing my patch.
I had not noticed that there is a Java version restriction on the used ThreadInfo class. As (daemon) threads are nothing new in Java this is really a surprise to me that this information is not available on Java 8. But now it makes perfectly sense why jmc did not already provide such a column.

As mitigation I would assume that the best way would be to check the Java version number before adding the isDaemon in org.openjdk.jmc.console.ui.tabs.threads.ThreadTableSectionPart.
Hopefully the other definitions in ThreadInfoCompositeSupport don't cause any problems if not used.

I will check this out and update my patch.

Regarding the JIRA issue this would be nice of you.

@aptmac
Copy link
Member

aptmac commented Sep 24, 2020

@jpstotz Great, I've created a JIRA issue for this enhancement, it can be found at: https://bugs.openjdk.java.net/browse/JMC-6913

@thegreystone thegreystone changed the title Threads view: "deamon" column added 6913: Add daemon thread information to the console threads view Sep 24, 2020
@jpstotz
Copy link
Contributor Author

jpstotz commented Sep 24, 2020

@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 org.openjdk.jmc.console.ui.tabs.threads.ThreadInfoCompositeSupport that catches potential InvalidKeyException that occur when enabling the Daemon column on a Java 8 VM.
In such a case a defined error string like "Data not available" is returned and shown for each thread as value in the Daemon column.

Do you think this is a suitable approach?

@openjdk openjdk bot added the rfr label Sep 28, 2020
@mlbridge
Copy link

mlbridge bot commented Sep 28, 2020

Webrevs

@aptmac
Copy link
Member

aptmac commented Sep 29, 2020

My current approach uses a Getter in org.openjdk.jmc.console.ui.tabs.threads.ThreadInfoCompositeSupport that catches potential InvalidKeyException that occur when enabling the Daemon column on a Java 8 VM.
In such a case a defined error string like "Data not available" is returned and shown for each thread as value in the Daemon column.

Do you think this is a suitable approach?

Yes, catching the exception in the Getter.getMember() could work. Alternatively, it might be cleaner to implement this like IS_DEADLOCKED or GET_ALLOCATED_BYTES, which also perform a check to see if the feature is enabled or not.

@jpstotz
Copy link
Contributor Author

jpstotz commented Oct 10, 2020

@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 IS_DEADLOCKED or GET_ALLOCATED_BYTES were not that helpful as they get the data from ThreadMXBean not ThreadInfo and thus require a different way to handle it.

Copy link
Member

@aptmac aptmac left a 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.

@jpstotz
Copy link
Contributor Author

jpstotz commented Oct 19, 2020

@aptmac I fixed the message text as you suggested.

Copy link
Member

@aptmac aptmac left a 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.

@openjdk
Copy link

openjdk bot commented Oct 19, 2020

⚠️ @jpstotz the full name on your profile does not match the author name in this pull requests' HEAD commit. If this pull request gets integrated then the author name from this pull requests' HEAD commit will be used for the resulting commit. If you wish to push a new commit with a different author name, then please run the following commands in a local repository of your personal fork:

$ git checkout daemonthread
$ git commit -c user.name='Preferred Full Name' --allow-empty -m 'Update full name'
$ git push

@openjdk
Copy link

openjdk bot commented Oct 19, 2020

@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:

6913: Add daemon thread information to the console threads view

Reviewed-by: aptmac, ghb

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 master branch:

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 /integrate in a new comment. (Afterwards, your sponsor types /sponsor in a new comment to perform the integration).

@openjdk openjdk bot added the ready label Oct 19, 2020
@thegreystone
Copy link
Member

/reviewers 2

@thegreystone thegreystone requested review from aptmac and guruhb October 19, 2020 18:58
@openjdk openjdk bot added the ready label Oct 20, 2020
@openjdk
Copy link

openjdk bot commented Oct 20, 2020

@thegreystone
The number of required reviews for this PR is now set to 2 (with at least 1 of role committers).

@openjdk openjdk bot removed the ready label Oct 20, 2020
@openjdk
Copy link

openjdk bot commented Oct 20, 2020

⚠️ @jpstotz the full name on your profile does not match the author name in this pull requests' HEAD commit. If this pull request gets integrated then the author name from this pull requests' HEAD commit will be used for the resulting commit. If you wish to push a new commit with a different author name, then please run the following commands in a local repository of your personal fork:

$ git checkout daemonthread
$ git commit -c user.name='Preferred Full Name' --allow-empty -m 'Update full name'
$ git push

@openjdk
Copy link

openjdk bot commented Oct 20, 2020

@thegreystone
The number of required reviews for this PR is now set to 2 (with at least 1 of role committers).

1 similar comment
@openjdk
Copy link

openjdk bot commented Oct 20, 2020

@thegreystone
The number of required reviews for this PR is now set to 2 (with at least 1 of role committers).

@openjdk
Copy link

openjdk bot commented Oct 20, 2020

⚠️ @jpstotz the full name on your profile does not match the author name in this pull requests' HEAD commit. If this pull request gets integrated then the author name from this pull requests' HEAD commit will be used for the resulting commit. If you wish to push a new commit with a different author name, then please run the following commands in a local repository of your personal fork:

$ git checkout daemonthread
$ git commit -c user.name='Preferred Full Name' --allow-empty -m 'Update full name'
$ git push

@openjdk
Copy link

openjdk bot commented Oct 20, 2020

@jpstotz This change is no longer ready for integration - check the PR body for details.

@openjdk openjdk bot added the ready label Oct 20, 2020
@openjdk
Copy link

openjdk bot commented Oct 20, 2020

@thegreystone
The number of required reviews for this PR is now set to 2 (with at least 1 of role committers).

Copy link
Contributor

@guruhb guruhb left a 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

@openjdk openjdk bot added the ready label Oct 21, 2020
@thegreystone thegreystone removed the request for review from Gunde October 21, 2020 16:43
@thegreystone
Copy link
Member

@jpstotz - you can now type /integrate in a new message to integrate the changes. Thanks for your contribution!

@jpstotz
Copy link
Contributor Author

jpstotz commented Oct 22, 2020

/integrate

@openjdk openjdk bot added the sponsor label Oct 22, 2020
@openjdk
Copy link

openjdk bot commented Oct 22, 2020

@jpstotz
Your change (at version cf4a0fc) is now ready to be sponsored by a Committer.

@thegreystone
Copy link
Member

@guruhb - you can sponsor now.

@guruhb
Copy link
Contributor

guruhb commented Oct 27, 2020

/sponsor

@openjdk
Copy link

openjdk bot commented Oct 27, 2020

@guruhb @jpstotz Since your change was applied there have been 26 commits pushed to the master branch:

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.

@jpstotz jpstotz deleted the daemonthread branch October 27, 2020 07:49
RealCLanger added a commit to RealCLanger/jmc that referenced this pull request Apr 3, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…38ef4332f7744a-sap

sap: Merge 23fb4f2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

None yet

4 participants