/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.alibaba.jstorm.utils; public class HttpserverUtils { public static final String HTTPSERVER_CONTEXT_PATH_LOGVIEW = "/logview"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD = "cmd"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD_LIST = "listDir"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD_SHOW = "showLog"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD_SEARCH_LOG = "searchLog"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD_JSTACK = "jstack"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD_JSTAT = "jstat"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD_SHOW_CONF = "showConf"; public static final String HTTPSERVER_LOGVIEW_PARAM_CMD_DOWNLOAD = "download"; public static final String HTTPSERVER_LOGVIEW_PARAM_LOGFILE = "log"; public static final String HTTPSERVER_LOGVIEW_PARAM_POS = "pos"; public static final String HTTPSERVER_LOGVIEW_PARAM_DIR = "dir"; public static final String HTTPSERVER_LOGVIEW_PARAM_WORKER_PORT = "workerPort"; public static final String HTTPSERVER_LOGVIEW_PARAM_SIZE_FORMAT = "%016d\n"; public static final int LOG_SEARCH_BLOCK_SIZE = 1024 * 16; //16K public static final String HTTPSERVER_LOGVIEW_PAGE_SIZE = "size"; }