You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Dmitriy Govorukhin (JIRA)" <ji...@apache.org> on 2018/03/29 13:20:00 UTC

[jira] [Created] (IGNITE-8077) Implement new JMX metrics for transactions

Dmitriy Govorukhin created IGNITE-8077:
------------------------------------------

             Summary: Implement new JMX metrics for transactions
                 Key: IGNITE-8077
                 URL: https://issues.apache.org/jira/browse/IGNITE-8077
             Project: Ignite
          Issue Type: New Feature
            Reporter: Dmitriy Govorukhin


These additional metrics should be implemented to monitor transactions.

{code}
class TransactionsMXbean{
/** The number of transactions which was commited. */
long txCommited();
/** The number of transactions which was rollbacked. */
long txRollBacked();
/** The number of transactions in prepared state. */
long txPrepared();
/** The number of keys locked on the node. */
long lockedKeys();
/** The number of transactions for which node is the initiator. */
int ownerTxs();
}
{code}

For more details see in IgniteTxAdapter and IgniteTxManager.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)