Copyright @ 2001 SAP. All Rights Reserved.

com.sap.util.monitor.jarm
Class RequestSummary

java.lang.Object
  |
  +--com.sap.util.monitor.jarm.RequestSummary
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
RequestSummaryExt

public class RequestSummary
extends java.lang.Object
implements java.io.Serializable

Structure contains the data to be shown for the request summary.

The fields are public, to allow faster access on them. Unused String fields could be null or space. Timestamps are in 'ms' as returned by System.currentTimeMillis(). Time (duration) is in 'ms', data in bytes.

See Also:
Serialized Form

Field Summary
 long reqAccComp
          number of component calls made for all requests
 long reqAccNr
          number of requests since reqFirstTS or resetReqTS (if a request reset was done); this timestamp is also used for all other request specific accumulated values unless otherwise documented
 long reqAccOutData
          accum. amount of outbound data (bytes)
 long reqAccOutDataFilled
          number of requests with provided outbound data amount
 long reqAccStatusCompNotClosed
          number of requests where not all components are correctly closed
 long reqAccStatusEndForced
          number of requests which are closed because of too many components
 long reqAccStatusOk
          number of correctly handled requests
 long reqAccTime
          amount of time for all requests (in ms)
 long reqAccUserNr
          number of different users making requests since reqFirstTS or resetUserTS (if a user reset was done)
 long reqAvgComp
          average number of component calls made per request
 long reqAvgOutData
          average amount of data going out per request (bytes);
only requests for which outbound data is provided
 long reqAvgTime
          average time of a request (in ms)
 long reqCompLevelBasic
          number of requests running with level ConfMonitor.COMPLEVELBASIC
 long reqCompLevelDetail
          number of requests running with level ConfMonitor.COMPLEVELDETAIL
 long reqCompLevelMedium
          number of requests running with level ConfMonitor.COMPLEVELMEDIUM
 long reqFirstTS
          timestamp of first request
 long reqPerSec
          requests per second
 long reqStartAccUserNr
          number of different users making requests since reqFirstTS; value is never resetted
 long resetCompTS
          timestamp of last reset of components
 long resetReqTS
          timestamp of last reset of requests
 long resetUserTS
          timestamp of last reset of users
 
Constructor Summary
RequestSummary()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

reqFirstTS

public long reqFirstTS
timestamp of first request

reqAccNr

public long reqAccNr
number of requests since reqFirstTS or resetReqTS (if a request reset was done); this timestamp is also used for all other request specific accumulated values unless otherwise documented

reqAccTime

public long reqAccTime
amount of time for all requests (in ms)

reqAvgTime

public long reqAvgTime
average time of a request (in ms)

reqPerSec

public long reqPerSec
requests per second

reqAccOutDataFilled

public long reqAccOutDataFilled
number of requests with provided outbound data amount

reqAccOutData

public long reqAccOutData
accum. amount of outbound data (bytes)

reqAvgOutData

public long reqAvgOutData
average amount of data going out per request (bytes);
only requests for which outbound data is provided

reqAccStatusOk

public long reqAccStatusOk
number of correctly handled requests

reqAccStatusCompNotClosed

public long reqAccStatusCompNotClosed
number of requests where not all components are correctly closed

reqAccStatusEndForced

public long reqAccStatusEndForced
number of requests which are closed because of too many components

reqCompLevelBasic

public long reqCompLevelBasic
number of requests running with level ConfMonitor.COMPLEVELBASIC

reqCompLevelMedium

public long reqCompLevelMedium
number of requests running with level ConfMonitor.COMPLEVELMEDIUM

reqCompLevelDetail

public long reqCompLevelDetail
number of requests running with level ConfMonitor.COMPLEVELDETAIL

reqAccComp

public long reqAccComp
number of component calls made for all requests

reqAvgComp

public long reqAvgComp
average number of component calls made per request

reqAccUserNr

public long reqAccUserNr
number of different users making requests since reqFirstTS or resetUserTS (if a user reset was done)

reqStartAccUserNr

public long reqStartAccUserNr
number of different users making requests since reqFirstTS; value is never resetted

resetReqTS

public long resetReqTS
timestamp of last reset of requests

resetCompTS

public long resetCompTS
timestamp of last reset of components

resetUserTS

public long resetUserTS
timestamp of last reset of users
Constructor Detail

RequestSummary

public RequestSummary()

Copyright @ 2001 SAP. All Rights Reserved.