com.ibm.websphere.pmi.stat

Interface WSThreadPoolStats


  1. public interface WSThreadPoolStats
WebSphere Thread Pool Stats interface. Thread pool stats are structured as follows in the PMI tree:

<server>
|
|__Thread Pools+
  |
  |__<threadPool_A>
  |__<threadPool_B>

+ indicates logical group

StatDescriptor is used to locate and access particular Stats in the PMI tree.
Example:

  1. StatDescriptor that represents the thread pool stats logical group: new StatDescriptor (new String[] {WSThreadPoolStats.NAME});
  2. StatDescriptor that represents the stats for <threadPool_B> thread pool: new StatDescriptor (new String[] {WSThreadPoolStats.NAME, "threadPool_B"});

Field Summary

Modifier and Type Field and Description
  1. static
  2. int
ActiveCount
Total number of concurrently active threads (BoundedRangeStatistic).
  1. static
  2. int
ActiveTime
The average time in milliseconds that the threads are in active state (TimeStatistic).
  1. static
  2. int
ClearedThreadHangCount
Total number of thread stops that cleared (CountStatistic).
  1. static
  2. int
ConcurrentHungThreadCount
Total number of concurrently stopped threads (RangeStatistic).
  1. static
  2. int
CreateCount
Total number of threads that are created (CountStatistic).
  1. static
  2. int
DeclaredThreadHungCount
Total number of threads that are declared stopped (CountStatistic).
  1. static
  2. int
DestroyCount
Total number of threads that are destroyed (CountStatistic).
  1. static
  2. java.lang.String
NAME
Stats name of the top level Thread pool logical group in PMI tree.
  1. static
  2. int
PercentMaxed
The average percent of the time that all threads are in use (BoundedRangeStatistic).
  1. static
  2. int
PoolSize
The average number of threads in a pool (BoundedRangeStatistic).

Field Detail

NAME

  1. static final java.lang.String NAME
Stats name of the top level Thread pool logical group in PMI tree.

<server>
|
|__Thread Pools+

See Also:

CreateCount

  1. static final int CreateCount
Total number of threads that are created (CountStatistic).
See Also:

DestroyCount

  1. static final int DestroyCount
Total number of threads that are destroyed (CountStatistic).
See Also:

ActiveCount

  1. static final int ActiveCount
Total number of concurrently active threads (BoundedRangeStatistic).
See Also:

PoolSize

  1. static final int PoolSize
The average number of threads in a pool (BoundedRangeStatistic).
See Also:

PercentMaxed

  1. static final int PercentMaxed
The average percent of the time that all threads are in use (BoundedRangeStatistic).
See Also:

DeclaredThreadHungCount

  1. static final int DeclaredThreadHungCount
Total number of threads that are declared stopped (CountStatistic).
See Also:

ClearedThreadHangCount

  1. static final int ClearedThreadHangCount
Total number of thread stops that cleared (CountStatistic).
See Also:

ConcurrentHungThreadCount

  1. static final int ConcurrentHungThreadCount
Total number of concurrently stopped threads (RangeStatistic).
See Also:

ActiveTime

  1. static final int ActiveTime
The average time in milliseconds that the threads are in active state (TimeStatistic).
See Also: