Interface ReplicatorStats
- All Known Subinterfaces:
NonPersistentReplicatorStats
public interface ReplicatorStats
Statistics about a replicator.
-
Method Summary
Modifier and TypeMethodDescriptionlong
Total number of bytes received from the remote cluster.long
Total number of bytes sent to the remote cluster.Timestamp of incoming connection establishment time.Address of incoming replication connection.long
Total number of messages expired.long
Total number of messages received from the remote cluster.long
Total number of messages sent to the remote cluster.double
Deprecated.double
Deprecated.double
Deprecated.double
Deprecated.double
Deprecated.Timestamp of outbound connection establishment time.Address of outbound replication connection.long
Number of messages pending to be replicated to remote cluster.long
Time in seconds from the time a message was produced to the time when it is about to be replicated.boolean
is the replication-subscriber up and running to replicate to remote cluster.
-
Method Details
-
getMsgRateIn
Deprecated.Total rate of messages received from the remote cluster (msg/s). -
getMsgInCount
long getMsgInCount()Total number of messages received from the remote cluster. -
getMsgThroughputIn
Deprecated.Total throughput received from the remote cluster (bytes/s). -
getBytesInCount
long getBytesInCount()Total number of bytes received from the remote cluster. -
getMsgRateOut
Deprecated.Total rate of messages delivered to the replication-subscriber (msg/s). -
getMsgOutCount
long getMsgOutCount()Total number of messages sent to the remote cluster. -
getMsgThroughputOut
Deprecated.Total throughput delivered to the replication-subscriber (bytes/s). -
getBytesOutCount
long getBytesOutCount()Total number of bytes sent to the remote cluster. -
getMsgRateExpired
Deprecated.Total rate of messages expired (msg/s). -
getMsgExpiredCount
long getMsgExpiredCount()Total number of messages expired. -
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
String getInboundConnection()Address of incoming replication connection. -
getInboundConnectedSince
String getInboundConnectedSince()Timestamp of incoming connection establishment time. -
getOutboundConnection
String getOutboundConnection()Address of outbound replication connection. -
getOutboundConnectedSince
String getOutboundConnectedSince()Timestamp of outbound connection establishment time.
-