Copyright @ 2001 SAP. All Rights Reserved.

com.sap.util.monitor.jarm
Class ComponentOverview

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

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

Structure contains the condensed 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.

See Also:
Serialized Form

Field Summary
 long compAccGrossTime
          amount of gross time for all calls
 long compAccGrossTimeFilled
          number of calls which are closed correctly so that gross time information could be provided
 long compAccNetTime
          amount of net time for all calls
 long compAccNetTimeFilled
          number of calls where all direct subcomponents are closed correctly so that net time information could be provided
 long compAccNr
          number of component calls
 long compAccOutData
          accum. amount of outbound data (bytes)
 long compAccOutDataFilled
          number of calls with provided outgoing data amount
 java.util.Properties compAccProps
          specific properties for this component; null <-> no such properties
 long compAccPropsNr
          number of calls to condense component specific properties
 long compAvgGrossTime
          average gross time for the component
 long compAvgNetTime
          average net time for the component
 long compAvgOutData
          average amount of outbound data (bytes)
 java.lang.String compDescr
          description of component (text); could be null
 java.lang.String compName
          component name
 
Constructor Summary
ComponentOverview()
           
 
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

compAccNr

public long compAccNr
number of component calls

compAccGrossTimeFilled

public long compAccGrossTimeFilled
number of calls which are closed correctly so that gross time information could be provided

compAccNetTimeFilled

public long compAccNetTimeFilled
number of calls where all direct subcomponents are closed correctly so that net time information could be provided

compAccGrossTime

public long compAccGrossTime
amount of gross time for all calls

compAccNetTime

public long compAccNetTime
amount of net time for all calls

compAvgGrossTime

public long compAvgGrossTime
average gross time for the component

compAvgNetTime

public long compAvgNetTime
average net time for the component

compAccOutDataFilled

public long compAccOutDataFilled
number of calls with provided outgoing data amount

compAccOutData

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

compAvgOutData

public long compAvgOutData
average amount of outbound data (bytes)

compAccPropsNr

public long compAccPropsNr
number of calls to condense component specific properties

compAccProps

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

ComponentOverview

public ComponentOverview()

Copyright @ 2001 SAP. All Rights Reserved.