Class LogviewerLogPageHandler


  • public class LogviewerLogPageHandler
    extends Object
    • Method Detail

      • listLogFiles

        public jakarta.ws.rs.core.Response listLogFiles​(String user,
                                                        Integer port,
                                                        String topologyId,
                                                        String callback,
                                                        String origin)
                                                 throws IOException
        Enumerate worker log files for given criteria.
        Parameters:
        user - username
        port - worker's port, null for all workers
        topologyId - topology ID, null for all topologies
        callback - callbackParameterName for JSONP
        origin - origin
        Returns:
        list of worker logs for given criteria
        Throws:
        IOException
      • logPage

        public jakarta.ws.rs.core.Response logPage​(String fileName,
                                                   Integer start,
                                                   Integer length,
                                                   String grep,
                                                   String user)
                                            throws IOException,
                                                   InvalidRequestException
        Provides a worker log file to view, starting from the specified position or default starting position of the most recent page.
        Parameters:
        fileName - file to view
        start - start offset, or null if the most recent page is desired
        length - length to read in this page, or null if default page length is desired
        grep - search string if request is a result of the search, can be null
        user - username
        Returns:
        HTML view page of worker log
        Throws:
        IOException
        InvalidRequestException
      • daemonLogPage

        public jakarta.ws.rs.core.Response daemonLogPage​(String fileName,
                                                         Integer start,
                                                         Integer length,
                                                         String grep,
                                                         String user)
                                                  throws IOException,
                                                         InvalidRequestException
        Provides a daemon log file to view.
        Parameters:
        fileName - file to view
        start - start offset, or null if the most recent page is desired
        length - length to read in this page, or null if default page length is desired
        grep - search string if request is a result of the search, can be null
        user - username
        Returns:
        HTML view page of daemon log
        Throws:
        IOException
        InvalidRequestException