Class HttpServer
- java.lang.Object
-
- com.suse.salt.netapi.datatypes.cherrypy.HttpServer
-
public class HttpServer extends Object
Representation of HTTP server statistics.
-
-
Constructor Summary
Constructors Constructor Description HttpServer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAccepts()doublegetAcceptsPerSecond()StringgetBindAddress()intgetBytesRead()intgetBytesWritten()intgetQueue()intgetReadThroughput()intgetRequests()intgetRunTime()intgetSocketErrors()intgetThreads()intgetThreadsIdle()Map<String,ServerThread>getWorkerThreads()intgetWorkTime()doublegetWriteThroughput()booleanisEnable()
-
-
-
Method Detail
-
getBytesRead
public int getBytesRead()
-
getAcceptsPerSecond
public double getAcceptsPerSecond()
-
getSocketErrors
public int getSocketErrors()
-
getAccepts
public int getAccepts()
-
getThreadsIdle
public int getThreadsIdle()
-
isEnable
public boolean isEnable()
-
getBindAddress
public String getBindAddress()
-
getReadThroughput
public int getReadThroughput()
-
getQueue
public int getQueue()
-
getRunTime
public int getRunTime()
-
getWorkerThreads
public Map<String,ServerThread> getWorkerThreads()
-
getThreads
public int getThreads()
-
getBytesWritten
public int getBytesWritten()
-
getRequests
public int getRequests()
-
getWorkTime
public int getWorkTime()
-
getWriteThroughput
public double getWriteThroughput()
-
-