[This article was first published on R – Fordox, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
While analysing thread dump using an analyzer, one can see thread stacks written in a particular format along with its thread states.
The format generally mentioned in the dump is ajp-10.10.89.123-8029-9 daemon prio=10
ajp – Protocol used to connect Apache to JBoss .
10.10.XX.XXX – JBoss Server IP.
8029 – Port on which the JBoss AJP port is listening.
9 – Thread number.
daemon – If its a daemon thread.
prio=10 – Represents the priority of the threads.
To leave a comment for the author, please follow the link and comment on their blog: R – Fordox.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.