Class TransactionMetadataStoreStats
- java.lang.Object
-
- org.apache.pulsar.transaction.coordinator.impl.TransactionMetadataStoreStats
-
public class TransactionMetadataStoreStats extends java.lang.ObjectTransaction metadata store stats.
-
-
Field Summary
Fields Modifier and Type Field Description longabortedCountThe aborted transaction count of this transaction coordinator.longappendLogCountThe append transaction op log count of this transaction coordinator.longcommittedCountThe committed transaction count of this transaction coordinator.longcreatedCountThe created transaction count of this transaction coordinator.org.apache.bookkeeper.mledger.util.StatsBucketsexecutionLatencyBucketsThe transaction execution latency.longtimeoutCountThe timeout out transaction count of this transaction coordinator.
-
Constructor Summary
Constructors Constructor Description TransactionMetadataStoreStats()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTransactionExecutionLatencySample(long latency)
-
-
-
Field Detail
-
committedCount
public long committedCount
The committed transaction count of this transaction coordinator.
-
abortedCount
public long abortedCount
The aborted transaction count of this transaction coordinator.
-
createdCount
public long createdCount
The created transaction count of this transaction coordinator.
-
appendLogCount
public long appendLogCount
The append transaction op log count of this transaction coordinator.
-
timeoutCount
public long timeoutCount
The timeout out transaction count of this transaction coordinator.
-
executionLatencyBuckets
public org.apache.bookkeeper.mledger.util.StatsBuckets executionLatencyBuckets
The transaction execution latency.
-
-