All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.kafka.monitor.model.TopicInfo Maven / Gradle / Ivy

/**
 * 
 */
package com.jeesuite.kafka.monitor.model;

import java.util.ArrayList;
import java.util.List;

/**
 * 
 * @description 
* @author vakin * @date 2016年6月22日 */ public class TopicInfo { private String topicName; List partitions; private boolean overLatThreshold; private long totalLogSize; private long totalOffset; public TopicInfo() {} public TopicInfo(String topicName) { super(); this.topicName = topicName; } public String getTopicName() { return topicName; } public void setTopicName(String topicName) { this.topicName = topicName; } public int getPartitionNums() { return partitions.size(); } public List getPartitions() { return partitions == null ? (partitions = new ArrayList<>()) : partitions; } public void setPartitions(List partitions) { this.partitions = partitions; } public boolean isOverLatThreshold() { return overLatThreshold; } public void setOverLatThreshold(boolean overLatThreshold) { this.overLatThreshold = overLatThreshold; } public long getTotalLogSize() { if(totalLogSize > 0 || partitions == null)return totalLogSize; for (TopicPartitionInfo tp : partitions) { totalLogSize+=tp.getLogSize(); } return totalLogSize; } public long getTotalOffset() { if(totalOffset > 0 || partitions == null)return totalOffset; for (TopicPartitionInfo tp : partitions) { totalOffset+=tp.getOffset(); } return totalOffset; } public long getTotalLat(){ return getTotalLogSize() - getTotalOffset(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy