01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.jmeter.monitor.parser;
18:
19: /**
20: * Constants for the custom DocumentHandler.
21: *
22: * @version $Revision: 493787 $ on $Date: 2007-01-07 18:02:23 +0000 (Sun, 07 Jan 2007) $
23: */
24: public class Constants {
25: public static final String STATUS = "status";
26:
27: public static final String JVM = "jvm";
28:
29: public static final String CONNECTOR = "connector";
30:
31: public static final String MEMORY = "memory";
32:
33: public static final String THREADINFO = "threadInfo";
34:
35: public static final String REQUESTINFO = "requestInfo";
36:
37: public static final String WORKER = "worker";
38:
39: public static final String WORKERS = "workers";
40:
41: public static final String MEMORY_FREE = "free";
42:
43: public static final String MEMORY_TOTAL = "total";
44:
45: public static final String MEMORY_MAX = "max";
46:
47: public static final String ATTRIBUTE_NAME = "name";
48:
49: public static final String MAXTHREADS = "maxThreads";
50:
51: public static final String MINSPARETHREADS = "minSpareThreads";
52:
53: public static final String MAXSPARETHREADS = "maxSpareThreads";
54:
55: public static final String CURRENTTHREADCOUNT = "currentThreadCount";
56:
57: public static final String CURRENTBUSYTHREADS = "currentThreadsBusy";
58:
59: public static final String MAXTIME = "maxTime=";
60:
61: public static final String PROCESSINGTIME = "processingTime=";
62:
63: public static final String REQUESTCOUNT = "requestCount";
64:
65: public static final String ERRORCOUNT = "errorCount=";
66:
67: public static final String BYTESRECEIVED = "bytesReceived";
68:
69: public static final String BYTESSENT = "bytesSent";
70:
71: public static final String STAGE = "stage";
72:
73: public static final String REQUESTPROCESSINGTIME = "requestProcessingTime=";
74:
75: public static final String REQUESTBYTESSENT = "requestBytesSent";
76:
77: public static final String REQUESTBYTESRECEIVED = "requestBytesReceived";
78:
79: public static final String REMOTEADDR = "remoteAddr";
80:
81: public static final String VIRTUALHOST = "virtualHost";
82:
83: public static final String METHOD = "method";
84:
85: public static final String CURRENTURI = "currentUri";
86:
87: public static final String CURRENTQUERYSTRING = "currentQueryString";
88:
89: public static final String PROTOCOL = "protocol";
90: }
|