Package com.sleepycat.db
Class ReplicationManagerStats
java.lang.Object
com.sleepycat.db.ReplicationManagerStats
Replication Manager statistics for a database environment.
-
Method Summary
Modifier and TypeMethodDescriptionlongThe number of times new connection attempts have failed.longThe number of existing connections that have been dropped since the statistics were last reset.longNumber of currently active election threads.longElection threads for which space is reserved.longThe number of messages discarded due to queue length overflows.longThe number of messages queued due to a network delay.longThe number of times a PERM message originating at this site did not receive sufficient acknowledgement from clients, according to the configured acknowledgement policy and acknowledgement timeout.toString()For convenience, the ReplicationManagerStats class has a toString method that lists all the data fields.
-
Method Details
-
getPermFailed
public long getPermFailed()The number of times a PERM message originating at this site did not receive sufficient acknowledgement from clients, according to the configured acknowledgement policy and acknowledgement timeout. -
getMsgsQueued
public long getMsgsQueued()The number of messages queued due to a network delay. -
getMsgsDropped
public long getMsgsDropped()The number of messages discarded due to queue length overflows. -
getConnectionDrop
public long getConnectionDrop()The number of existing connections that have been dropped since the statistics were last reset. -
getConnectFail
public long getConnectFail()The number of times new connection attempts have failed. -
getElectThreads
public long getElectThreads()Number of currently active election threads. -
getMaxElectThreads
public long getMaxElectThreads()Election threads for which space is reserved. -
toString
For convenience, the ReplicationManagerStats class has a toString method that lists all the data fields.
-