Package org.apache.ignite.mxbean
Interface TransactionMetricsMxBean
- 
- All Superinterfaces:
- TransactionMetrics
 
 @Deprecated @MXBeanDescription("MBean that provides access to Ignite transactions.") public interface TransactionMetricsMxBean extends TransactionMetrics Deprecated.Check theJmxMetricExporterSpiwith "name=\"tx\"" instead.Transactions MXBean interface.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description longcommitTime()Deprecated.The last time, when transaction was commited.Map<String,String>getAllOwnerTransactions()Deprecated.All near transactionslonggetLockedKeysNumber()Deprecated.The number of keys locked on the node.Map<String,String>getLongRunningOwnerTransactions(int duration)Deprecated.Long running near transactionslonggetOwnerTransactionsNumber()Deprecated.The number of active transactions for which this node is the initiator.longgetTransactionsCommittedNumber()Deprecated.The number of transactions which were committed.longgetTransactionsHoldingLockNumber()Deprecated.The number of active transactions holding at least one key lock.longgetTransactionsRolledBackNumber()Deprecated.The number of transactions which were rollback.longrollbackTime()Deprecated.The last time, when transaction was rollbacked.inttxCommits()Deprecated.The total number of commited transactions.inttxRollbacks()Deprecated.Tne total number of rollbacked transactions.
 
- 
- 
- 
Method Detail- 
getAllOwnerTransactions@MXBeanDescription("All near transactions.") Map<String,String> getAllOwnerTransactions() Deprecated.All near transactions- Specified by:
- getAllOwnerTransactionsin interface- TransactionMetrics
- Returns:
- near transactions.
 
 - 
getLongRunningOwnerTransactions@MXBeanDescription("Long running near transactions.") Map<String,String> getLongRunningOwnerTransactions(@MXBeanParameter(name="duration",description="Duration, at least (ms).") int duration) Deprecated.Long running near transactions- Specified by:
- getLongRunningOwnerTransactionsin interface- TransactionMetrics
- Parameters:
- duration- Transaction duration.
- Returns:
- near transactions.
 
 - 
getTransactionsCommittedNumber@MXBeanDescription("The number of transactions which were committed.") long getTransactionsCommittedNumber() Deprecated.The number of transactions which were committed.- Specified by:
- getTransactionsCommittedNumberin interface- TransactionMetrics
- Returns:
- number of transactions which were committed.
 
 - 
getTransactionsRolledBackNumber@MXBeanDescription("The number of transactions which were rollback.") long getTransactionsRolledBackNumber() Deprecated.The number of transactions which were rollback.- Specified by:
- getTransactionsRolledBackNumberin interface- TransactionMetrics
- Returns:
- number of transactions which were rollback.
 
 - 
getTransactionsHoldingLockNumber@MXBeanDescription("The number of active transactions holding at least one key lock.") long getTransactionsHoldingLockNumber() Deprecated.The number of active transactions holding at least one key lock.- Specified by:
- getTransactionsHoldingLockNumberin interface- TransactionMetrics
- Returns:
- number of active transactions holding at least one key lock.
 
 - 
getLockedKeysNumber@MXBeanDescription("The number of keys locked on the node.") long getLockedKeysNumber() Deprecated.The number of keys locked on the node.- Specified by:
- getLockedKeysNumberin interface- TransactionMetrics
- Returns:
- number of keys locked on the node.
 
 - 
getOwnerTransactionsNumber@MXBeanDescription("The number of active transactions for which this node is the initiator.") long getOwnerTransactionsNumber() Deprecated.The number of active transactions for which this node is the initiator.- Specified by:
- getOwnerTransactionsNumberin interface- TransactionMetrics
- Returns:
- number of active transactions for which this node is the initiator.
 
 - 
commitTime@MXBeanDescription("Last commit time.") long commitTime() Deprecated.The last time, when transaction was commited.- Specified by:
- commitTimein interface- TransactionMetrics
- Returns:
- last time, when transaction was commited.
 
 - 
rollbackTime@MXBeanDescription("Last rollback time.") long rollbackTime() Deprecated.The last time, when transaction was rollbacked.- Specified by:
- rollbackTimein interface- TransactionMetrics
- Returns:
- last time, when transaction was rollbacked.
 
 - 
txCommits@MXBeanDescription("Number of transaction commits.") int txCommits() Deprecated.The total number of commited transactions.- Specified by:
- txCommitsin interface- TransactionMetrics
- Returns:
- total number of commited transactions.
 
 - 
txRollbacks@MXBeanDescription("Number of transaction rollbacks.") int txRollbacks() Deprecated.Tne total number of rollbacked transactions.- Specified by:
- txRollbacksin interface- TransactionMetrics
- Returns:
- total number of rollbacked transactions.
 
 
- 
 
-