Class DebugResource
- java.lang.Object
-
- org.apache.pinot.server.api.resources.DebugResource
-
@Path("/debug/") public class DebugResource extends ObjectDebug resource for Pinot Server.
-
-
Constructor Summary
Constructors Constructor Description DebugResource()
-
Method Summary
Modifier and Type Method Description SegmentServerDebugInfogetSegmentDebugInfo(String tableNameWithType, String segmentName)List<SegmentServerDebugInfo>getSegmentsDebugInfo(String tableNameWithType)
-
-
-
Method Detail
-
getSegmentsDebugInfo
@GET @Path("tables/{tableName}") @Produces("application/json") public List<SegmentServerDebugInfo> getSegmentsDebugInfo(@PathParam("tableName") String tableNameWithType)
-
getSegmentDebugInfo
@GET @Path("segments/{tableName}/{segmentName}") @Produces("application/json") public SegmentServerDebugInfo getSegmentDebugInfo(@PathParam("tableName") String tableNameWithType, @PathParam("segmentName") String segmentName)
-
-