Class DebugResource


  • @Path("/debug/")
    public class DebugResource
    extends Object
    Debug resource for Pinot Server.
    • Constructor Detail

      • DebugResource

        public DebugResource()
    • 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)