Total number of blocked and waits in Jconsole threads Panel (RPM)

Source: Internet
Author: User
Tags jconsole

Total Blocked

Blocked count is the total number of times that the thread Blocked to enter or reenter a monitor. i.e. the number of times a thread has been in the Java.lang.Thread.State.BLOCKED state.

Total Waits

Waited count is the total number of times that the thread waited for notification. i.e. the number of times that a thread have been in the Ava.lang.Thread.State.WAITING or Java.lang.Thread.State.TIMED_WAITI NG state.

When a thread attempts to acquire an internal object lock (not a lock in the Java.util.concurrent Library), and the lock is occupied by another thread, the thread goes into a blocking state.

When a thread waits for another thread to notify the scheduler of a condition, it enters its own wait state. A wait condition occurs when you call the object.wait () or Thread.Join () method, or wait for lock or condition in the Java.util.concurrent library

http://blog.csdn.net/mangmang2012/article/details/7106692

Http://stackoverflow.com/questions/7170235/what-does-blocked-count-and-waited-count-in-a-java-thread-mean

About Jconsole Thread monitoring parameters blocked count, waited Count

See Java.lang.management.ThreadInfo for detailed concepts

Total number of blocked and waits in Jconsole threads Panel (RPM)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.