Copyright @ 2001 SAP. All Rights Reserved.

com.sap.util.monitor.jarm
Class CompSingleOverview

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

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

Structure contains the collected data to be shown for one component.

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. Undefined / not provided values for time and data is indicated by ConfMonitor.UNDEFTIME and ConfMonitor.UNDEFDATA.

See Also:
Serialized Form

Field Summary
 ActionOverview[] actionOverview
          array of actions; is filled only if data is used for SAT (single activity trace); is null otherwise or if no action call occurred
 java.lang.String compDescr
          description of component (text); could be null
 long compGrossTime
          gross time of component; is undefined (ConfMonitor.UNDEFTIME) if component is not closed correctly
 java.lang.String compName
          component name
 long compNetTime
          net time of component; is undefined (ConfMonitor.UNDEFTIME) if gross time not defined and at least one direct subcomponent is not closed correctly
 long compOutData
          amount of outbound data (bytes)
 java.util.Properties compProps
          specific properties for this component; null <-> no such properties
 long compStartTS
          start time of component
 int level
          level.
indicates, how deep component is nested;
0 <-> main level
 
Constructor Summary
CompSingleOverview()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

compName

public java.lang.String compName
component name

compDescr

public java.lang.String compDescr
description of component (text); could be null

level

public int level
level.
indicates, how deep component is nested;
0 <-> main level

compStartTS

public long compStartTS
start time of component

compGrossTime

public long compGrossTime
gross time of component; is undefined (ConfMonitor.UNDEFTIME) if component is not closed correctly

compNetTime

public long compNetTime
net time of component; is undefined (ConfMonitor.UNDEFTIME) if gross time not defined and at least one direct subcomponent is not closed correctly

compOutData

public long compOutData
amount of outbound data (bytes)

compProps

public java.util.Properties compProps
specific properties for this component; null <-> no such properties

actionOverview

public ActionOverview[] actionOverview
array of actions; is filled only if data is used for SAT (single activity trace); is null otherwise or if no action call occurred
Constructor Detail

CompSingleOverview

public CompSingleOverview()

Copyright @ 2001 SAP. All Rights Reserved.