Class SegmentServerDebugInfo
- java.lang.Object
-
- org.apache.pinot.common.restlet.resources.SegmentServerDebugInfo
-
public class SegmentServerDebugInfo extends Object
This class represents the server-side debug information for a segment. NOTE: Debug classes are not expected to maintain backward compatibility, and should not be exposed to the client side.
-
-
Constructor Summary
Constructors Constructor Description SegmentServerDebugInfo(String segmentName, String segmentSize, SegmentConsumerInfo consumerInfo, SegmentErrorInfo errorInfo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SegmentConsumerInfogetConsumerInfo()SegmentErrorInfogetErrorInfo()StringgetSegmentName()StringgetSegmentSize()
-
-
-
Constructor Detail
-
SegmentServerDebugInfo
public SegmentServerDebugInfo(String segmentName, String segmentSize, SegmentConsumerInfo consumerInfo, SegmentErrorInfo errorInfo)
-
-
Method Detail
-
getSegmentName
public String getSegmentName()
-
getSegmentSize
public String getSegmentSize()
-
getConsumerInfo
public SegmentConsumerInfo getConsumerInfo()
-
getErrorInfo
public SegmentErrorInfo getErrorInfo()
-
-