com.ibm.websphere.pmi.stat
Interface WSJTAStats
- public interface WSJTAStats
<server>
|
|__Transaction Manager
Field Summary
Modifier and Type | Field and Description |
---|---|
|
ActiveCount
Number of concurrently active global transactions (CountStatistic).
|
|
CommittedCount
Total number of global transactions committed (CountStatistic).
|
|
GlobalBeforeCompletionTime
Average duration of before_completion for global transactions (TimeStatistic).
|
|
GlobalBegunCount
Total number of global transactions begun on server (CountStatistic).
|
|
GlobalCommitTime
Average duration of commit for global transactions (TimeStatistic).
|
|
GlobalInvolvedCount
Total number of global transactions involved on server (CountStatistic).
|
|
GlobalPrepareTime
Average duration of prepare for global transactions (TimeStatistic).
|
|
GlobalTimeoutCount
Number of global transactions timed out (CountStatistic).
|
|
GlobalTranTime
Average duration of global transactions (TimeStatistic).
|
|
LocalActiveCount
Number of concurrently active local transactions (CountStatistic).
|
|
LocalBeforeCompletionTime
Average duration of before_completion for local transactions (TimeStatistic).
|
|
LocalBegunCount
Total number of local transactions begun on server (CountStatistic).
|
|
LocalCommittedCount
Number of local transactions committed (CountStatistic).
|
|
LocalCommitTime
Average duration of commit for local transactions (TimeStatistic).
|
|
LocalRolledbackCount
Number of local transactions rolled back (CountStatistic).
|
|
LocalTimeoutCount
Number of local transactions timed out (CountStatistic).
|
|
LocalTranTime
Average duration of local transactions (TimeStatistic).
|
|
NAME
Stats name of Transaction manager stats in PMI tree.
|
|
OptimizationCount
Number of global transactions converted to single phase for optimization (CountStatistic).
|
|
RolledbackCount
Total number of global transactions rolled back (CountStatistic).
|
Field Detail
NAME
- static final java.lang.String NAME
See Also:
GlobalBegunCount
- static final int GlobalBegunCount
Total number of global transactions begun on server (CountStatistic).
See Also:
GlobalInvolvedCount
- static final int GlobalInvolvedCount
Total number of global transactions involved on server (CountStatistic). For example, begun and imported.
See Also:
LocalBegunCount
- static final int LocalBegunCount
Total number of local transactions begun on server (CountStatistic).
See Also:
ActiveCount
- static final int ActiveCount
Number of concurrently active global transactions (CountStatistic).
See Also:
LocalActiveCount
- static final int LocalActiveCount
Number of concurrently active local transactions (CountStatistic).
See Also:
GlobalTranTime
- static final int GlobalTranTime
Average duration of global transactions (TimeStatistic).
See Also:
LocalTranTime
- static final int LocalTranTime
Average duration of local transactions (TimeStatistic).
See Also:
GlobalBeforeCompletionTime
- static final int GlobalBeforeCompletionTime
Average duration of before_completion for global transactions (TimeStatistic).
See Also:
GlobalPrepareTime
- static final int GlobalPrepareTime
Average duration of prepare for global transactions (TimeStatistic).
See Also:
GlobalCommitTime
- static final int GlobalCommitTime
Average duration of commit for global transactions (TimeStatistic).
See Also:
LocalBeforeCompletionTime
- static final int LocalBeforeCompletionTime
Average duration of before_completion for local transactions (TimeStatistic).
See Also:
LocalCommitTime
- static final int LocalCommitTime
Average duration of commit for local transactions (TimeStatistic).
See Also:
OptimizationCount
- static final int OptimizationCount
Number of global transactions converted to single phase for optimization (CountStatistic).
See Also:
CommittedCount
- static final int CommittedCount
Total number of global transactions committed (CountStatistic).
See Also:
LocalCommittedCount
- static final int LocalCommittedCount
Number of local transactions committed (CountStatistic).
See Also:
RolledbackCount
- static final int RolledbackCount
Total number of global transactions rolled back (CountStatistic).
See Also:
LocalRolledbackCount
- static final int LocalRolledbackCount
Number of local transactions rolled back (CountStatistic).
See Also:
GlobalTimeoutCount
- static final int GlobalTimeoutCount
Number of global transactions timed out (CountStatistic).
See Also:
LocalTimeoutCount
- static final int LocalTimeoutCount
Number of local transactions timed out (CountStatistic).
See Also:
<server>
|
|__Transaction Manager