public interface WSSessionManagementStats
+ indicates logical group
StatDescriptor
is used to locate and access particular Stats in the PMI tree.
Example:
new StatDescriptor (new String[] {WSSessionManagementStats.NAME});
new StatDescriptor (new String[] {WSSessionManagementStats.NAME, "web_application_1"});
Modifier and Type | Field and Description |
---|---|
static int |
ActivateNonExistSessionCount
The number of requests for a session that no longer exists, presumably because the session timed out (CountStatistic).
|
static int |
ActiveCount
Total number of sessions that are currently accessed by requests (RangeStatistic).
|
static int |
AffinityBreakCount
The number of HTTP session affinities that are broken, not counting WebSphere Application Server intentional breaks of session affinity (CountStatistic).
|
static int |
CacheDiscardCount
The number of session objects that are forced out of the cache (CountStatistic).
|
static int |
CreateCount
Total number of sessions that are created (CountStatistic).
|
static int |
ExternalReadSize
The size of the session data read from persistent store (TimeStatistic).
|
static int |
ExternalReadTime
The time (in milliseconds) taken in reading the session data from persistent store (TimeStatistic).
|
static int |
ExternalWriteSize
The size of the session data written to persistent store (AverageStatistic).
|
static int |
ExternalWriteTime
The time (in milliseconds) taken in writing the session data from persistent store (AverageStatistic).
|
static int |
InvalidateCount
Total number of sessions that are invalidated (CountStatistic).
|
static int |
LifeTime
Average session lifetime in milliseconds - TimeStatistic (time invalidated - time created).
|
static int |
LiveCount
Total number of sessions that are currently live (RangeStatistic).
|
static java.lang.String |
NAME |
static int |
NoRoomForNewSessionCount
The number of times that a request for a new session cannot be handled because the value exceeds the maximum session count (CountStatistic).
|
static int |
SessionObjectSize
The average size of the session objects at session level, including only serializable attributes in the cache (AverageStatistic).
|
static int |
TimeoutInvalidationCount
The number of sessions that are invalidated with timeout (CountStatistic).
|
static int |
TimeSinceLastActivated
The time difference in milliseconds of the previous and current access time stamps (TimeStatistic).
|
static final java.lang.String NAME
static final int CreateCount
static final int InvalidateCount
static final int LifeTime
static final int ActiveCount
static final int LiveCount
static final int NoRoomForNewSessionCount
static final int CacheDiscardCount
static final int ExternalReadTime
static final int ExternalReadSize
static final int ExternalWriteTime
static final int ExternalWriteSize
static final int AffinityBreakCount
static final int TimeSinceLastActivated
static final int TimeoutInvalidationCount
static final int ActivateNonExistSessionCount
static final int SessionObjectSize