apoc.monitor.tx
Procedure Apoc Extended
apoc.monitor.tx() returns informations about the neo4j transaction manager
Signature
apoc.monitor.tx() :: (rolledBackTx :: INTEGER?, peakTx :: INTEGER?, lastTxId :: INTEGER?, currentOpenedTx :: INTEGER?, totalOpenedTx :: INTEGER?, totalTx :: INTEGER?)
Output parameters
Name | Type |
---|---|
rolledBackTx |
INTEGER? |
peakTx |
INTEGER? |
lastTxId |
INTEGER? |
currentOpenedTx |
INTEGER? |
totalOpenedTx |
INTEGER? |
totalTx |
INTEGER? |
Usage Examples
CALL apoc.monitor.tx();
rolledBackTx | peakTx | lastTxId | currentOpenedTx | totalOpenedTx | totalTx |
---|---|---|---|---|---|
21 |
1 |
710 |
1 |
49 |
27 |
Was this page helpful?