Interface ReplicatorStats
-
- All Known Subinterfaces:
NonPersistentReplicatorStats
public interface ReplicatorStatsStatistics about a replicator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetInboundConnectedSince()Timestamp of incoming connection establishment time.java.lang.StringgetInboundConnection()Address of incoming replication connection.doublegetMsgRateExpired()Total rate of messages expired (msg/s).doublegetMsgRateIn()Total rate of messages received from the remote cluster (msg/s).doublegetMsgRateOut()Total rate of messages delivered to the replication-subscriber (msg/s).doublegetMsgThroughputIn()Total throughput received from the remote cluster (bytes/s).doublegetMsgThroughputOut()Total throughput delivered to the replication-subscriber (bytes/s).java.lang.StringgetOutboundConnectedSince()Timestamp of outbound connection establishment time.java.lang.StringgetOutboundConnection()Address of outbound replication connection.longgetReplicationBacklog()Number of messages pending to be replicated to remote cluster.longgetReplicationDelayInSeconds()Time in seconds from the time a message was produced to the time when it is about to be replicated.booleanisConnected()is the replication-subscriber up and running to replicate to remote cluster.
-
-
-
Method Detail
-
getMsgRateIn
double getMsgRateIn()
Total rate of messages received from the remote cluster (msg/s).
-
getMsgThroughputIn
double getMsgThroughputIn()
Total throughput received from the remote cluster (bytes/s).
-
getMsgRateOut
double getMsgRateOut()
Total rate of messages delivered to the replication-subscriber (msg/s).
-
getMsgThroughputOut
double getMsgThroughputOut()
Total throughput delivered to the replication-subscriber (bytes/s).
-
getMsgRateExpired
double getMsgRateExpired()
Total rate of messages expired (msg/s).
-
getReplicationBacklog
long getReplicationBacklog()
Number of messages pending to be replicated to remote cluster.
-
isConnected
boolean isConnected()
is the replication-subscriber up and running to replicate to remote cluster.
-
getReplicationDelayInSeconds
long getReplicationDelayInSeconds()
Time in seconds from the time a message was produced to the time when it is about to be replicated.
-
getInboundConnection
java.lang.String getInboundConnection()
Address of incoming replication connection.
-
getInboundConnectedSince
java.lang.String getInboundConnectedSince()
Timestamp of incoming connection establishment time.
-
getOutboundConnection
java.lang.String getOutboundConnection()
Address of outbound replication connection.
-
getOutboundConnectedSince
java.lang.String getOutboundConnectedSince()
Timestamp of outbound connection establishment time.
-
-