|
SilverStream Application Server 3.5 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This interface represents the statistics gathered by the SilverStream Server.
AgiAdmServer
Method Summary | |
long |
getEmittedBytes()
Get the total number of bytes emited. |
long |
getFreeMemory()
Get the amount of Runtime Free Memory |
int |
getFreeThreadCount()
Get the number of free threads in the server. |
int |
getGcCount()
Get the number of times that garbage collection (GC) has run since Silvermaster has been opened at Server startup |
long |
getHitCount()
Get the total number of hits. |
int |
getIdleThreadCount()
Get the number of idle threads in the server. |
long |
getMaxRequestTime()
Get the max request processing time. |
URL |
getMaxRequestURL()
Get the URL of the request that took the longest time to be processed. |
long |
getMeanRequestTime()
Get the mean request processing time. |
long |
getMinRequestTime()
Get the min request processing time. |
URL |
getMinRequestURL()
Get the URL of the request that took the smallest time to be processed. |
int |
getServerLoad()
Get the current server load. |
long |
getStartTime()
Get the time at which the server was started. |
long |
getTotalMemory()
Get the amount of Runtime Free Memory |
int |
getTotalThreadCount()
Get the total number of client threads. |
Method Detail |
public int getServerLoad()
AgiAdmStatistics stats = server.getStatistics(); int serverLoad = stats.getServerLoad();
public int getFreeThreadCount()
AgiAdmStatistics stats = server.getStatistics(); int freeThreads = stats.getFreeThreadCount();
public int getIdleThreadCount()
AgiAdmStatistics stats = server.getStatistics(); int idleThreads = stats.getIdleThreadCount();
public int getTotalThreadCount()
AgiAdmStatistics stats = server.getStatistics(); int totalThreads = stats.getTotalThreadCount();
public long getHitCount()
AgiAdmStatistics stats = server.getStatistics(); long hitCount = stats.getHitCount();
public long getMeanRequestTime()
AgiAdmStatistics stats = server.getStatistics(); long meanReqTime = stats.getMeanRequestTime();
public long getMaxRequestTime()
AgiAdmStatistics stats = server.getStatistics(); long maxReqTime = stats.getMaxRequestTime();
public URL getMaxRequestURL()
AgiAdmStatistics stats = server.getStatistics(); URL maxReqURL = stats.getMaxRequestURL();
public long getMinRequestTime()
AgiAdmStatistics stats = server.getStatistics(); long minReqTime = stats.getMinRequestTime();
public URL getMinRequestURL()
AgiAdmStatistics stats = server.getStatistics(); URL minReqURL = stats.getMinRequestURL();
public long getEmittedBytes()
AgiAdmStatistics stats = server.getStatistics(); long bytes = stats.getEmittedBytes();
public long getStartTime()
AgiAdmStatistics stats = server.getStatistics(); long startTime = stats.getStartTime();
public long getFreeMemory()
AgiAdmStatistics stats = server.getStatistics(); long freeMem = stats.getFreeMemory();
public long getTotalMemory()
AgiAdmStatistics stats = server.getStatistics(); long totalMem = stats.getTotalMemory();
public int getGcCount()
AgiAdmStatistics stats = server.getStatistics(); int gcCount = stats.getGcCount();
|
SilverStream Application Server 3.5 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |