PMI data classification


 

+

Search Tips   |   Advanced Search

 

The static component consists of...

...to identify the data.

The dynamic component contains information that changes over time, including...

The PMI data can be one of the following J2EE 1.4 Performance Data Framework statistic types:

Statistic type Description Example
CountStatistic Running count of a given value. Number of Servlet requests
AverageStatistic Simple average. Tracks total, count, min, and max. The average can be derived by total and count. This type is WebSphere extension to J2EE Performance Data Framework Average HttpSession size in bytes.
TimeStatistic Same as AverageStatistic, except that the unit of measure is milliseconds or seconds. Average Servlet response time.
RangeStatistic Time-weighted average. Tracks current, low water mark, high water mark, time-weight total, and integral. Number of concurrent Servlet requests.
BoundedRangeStatistic Same as RangeStatistic, with lower bound and upper bound. JDBC connection pool size.

The following diagram shows the statistic class hierarchy:



Statistic

ID A unique ID that identifies the Statistic within the given Stats (WebSphere PMI extension)
name Statistic name
unit Unit of measurement for the statistic
description Textual description of the statistic
startTime Time the first measurement was taken
lastSampleTime Time the most recent measurement was taken


CountStatistic

count Count since the measurement started

DoubleStatistic

count since the measurement started


AverageStatistic

(WebSphere PMI extension. This is the same as the TimeStatistic defined in J2EE 1.4, except that it is used to track non-time-related measurements like byte size, etc.)

count Number of measurements
total Sum of the values of all the measurements
min Minimum value
max Maximum value


BoundaryStatistic

upperBound Upper limit of this attribute
lowerBound Lower limit of this attribute


RangeStatistic

current Current value of this attribute
lowWaterMark Lowest value of this attribute
upperWaterMark Highest value of this attribute
integral Time-weighted sum of this attribute. WebSphere PMI extension

time-weighted average = integral / (lastSampleTime - startTime)

In WAS, V4, PMI data was classified with the following types:

These PMI data types continue to be supported through the PMI client API. Statistical data types are supported through both the PMI API and Java Management Extension (JMX) API.

In WAS, V 4 and V5, CountStatistic data require a low monitoring level, and TimeStatistic data require a medium monitoring level. RangeStatistic and BoundedRangeStatistic require a high monitoring level. There are a few counters that are exceptions to this rule. The average method response time, the total method calls, and active methods counters require a high monitoring level. The Java virtual machine counters, SerializableSessObjSize, and data tracked for each individual method (method level data) require a maximum monitoring level. Also, the level maximum enables synchronized update to all the statistic types.

WAS Vs 6.0 and above deprecate the monitoring levels (Low, Medium, High, and Max) and introduces fine-grained control to enable/disable statistics individually. The fine-grained control is available under the custom option. Refer to Enable PMI for more details.

In order to reduce the monitoring overhead, updates to CountStatistic, DoubleStatistic, AverageStatistic, and TimeStatistic are not synchronized. Since this data tracks the total and average, the extra accuracy is generally not worth the performance cost. RangeStatistic and BoundedRangeStatistic are very sensitive; therefore, they are always synchronized. To enable synchronized updates for all the statistic types enable the 'Use sequential update' option. Refer to Enable PMI for details.



 

Related concepts


PMI

 

Related tasks


Monitor overall system health