Interface NonPersistentTopicStats
-
- All Superinterfaces:
TopicStats
public interface NonPersistentTopicStats extends TopicStats
Statistics for a non-persistent topic.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetMsgDropRate()for non-persistent topic: broker drops msg if publisher publishes messages more than configured max inflight messages per connection.java.util.List<? extends NonPersistentPublisherStats>getPublishers()List of connected publishers on this topic w/ their stats.java.util.Map<java.lang.String,? extends NonPersistentReplicatorStats>getReplication()Map of replication statistics by remote cluster context.java.util.Map<java.lang.String,? extends NonPersistentSubscriptionStats>getSubscriptions()Map of subscriptions with their individual statistics.-
Methods inherited from interface org.apache.pulsar.common.policies.data.TopicStats
getAverageMsgSize, getBacklogSize, getBytesInCounter, getBytesOutCounter, getDeduplicationStatus, getMsgInCounter, getMsgOutCounter, getMsgRateIn, getMsgRateOut, getMsgThroughputIn, getMsgThroughputOut, getNonContiguousDeletedMessagesRanges, getNonContiguousDeletedMessagesRangesSerializedSize, getOffloadedStorageSize, getStorageSize, getTopicEpoch, getWaitingPublishers, isMsgChunkPublished
-
-
-
-
Method Detail
-
getMsgDropRate
double getMsgDropRate()
for non-persistent topic: broker drops msg if publisher publishes messages more than configured max inflight messages per connection.
-
getPublishers
java.util.List<? extends NonPersistentPublisherStats> getPublishers()
List of connected publishers on this topic w/ their stats.- Specified by:
getPublishersin interfaceTopicStats
-
getSubscriptions
java.util.Map<java.lang.String,? extends NonPersistentSubscriptionStats> getSubscriptions()
Map of subscriptions with their individual statistics.- Specified by:
getSubscriptionsin interfaceTopicStats
-
getReplication
java.util.Map<java.lang.String,? extends NonPersistentReplicatorStats> getReplication()
Map of replication statistics by remote cluster context.- Specified by:
getReplicationin interfaceTopicStats
-
-