Java Doc for PerformanceData.java in » ESB » open-esb » com » sun » esb » management » common » data » Java Source Code / Java DocumentationJava Source Code and Java Documentation
final public static String AVERAGEWITHOUTFIRSTMEASUREMENT_KEY(Code)
average' (ms) (the sum of all dt-s minus the first dt) divided by N. The
first measurement is discounted because it typically includes
classloading times and distorts the results considerably. If there's only
one measurement, the first measurement is not discounted and the value
should be equal to total time.
Load The sum of all dt-s divided by (tlast - tfirst). This is a measure
of concurrency: the higher the number, the greater the concurrency. In a
single threaded scenario this number can never exceed 1.
final public static String NUMBEROFMEASUREMENTOBJECTS_KEY(Code)
act the number of measurement objects on which begin() was called but not
end(). This indicates the number of active measurements. Caveat: there's
a problem in the this accounting when the subtopic of the measurement is
changed.
NUMBEROFMEASUREMENTS_KEY
final public static String NUMBEROFMEASUREMENTS_KEY(Code)
Number of measurements (or N), i.e. the number of dt-s, i.e. the number
of times that Measurement.begin() - end() was called.
tlast - tfirst the wallclock time of the first measurement's begin()
method is tracked as tfirst and the wallclock time of the last
measurement's end() method is tracked as tlast
average' (ms) (the sum of all dt-s minus the first dt) divided by N. The
first measurement is discounted because it typically includes
classloading times and distorts the results considerably. If there's only
one measurement, the first measurement is not discounted and the value
should be equal to total time.
Load The sum of all dt-s divided by (tlast - tfirst). This is a measure
of concurrency: the higher the number, the greater the concurrency. In a
single threaded scenario this number can never exceed 1.
act the number of measurement objects on which begin() was called but not
end(). This indicates the number of active measurements. Caveat: there's
a problem in the this accounting when the subtopic of the measurement is
changed.
tlast - tfirst the wallclock time of the first measurement's begin()
method is tracked as tfirst and the wallclock time of the last
measurement's end() method is tracked as tlast
Converts a Performance Data Map to an XML String
Parameters: dataMap - XML string representing a performance data map throws: ManagementRemoteException -