lr.user_data_point

Records a user-defined data sample.

Int lr.user_data_point( String sample_name, Double value );
Informational FunctionsJava Syntax

Arguments

NameComments
sample_name The data point name.
value The value to record.

The lr.user_data_point function allows you to record your own data for analysis. Each time you want to record a point, use this function to record the sample name and the value. The time of the sample is recorded automatically. After the execution, you can use the User Defined Data Points graph to analyze the results.

The following prefixes in sample_name are reserved:

  • HTTP
  • NON_HTTP
  • RETRY
  • mic_
  • stream_
  • mms_

A data point with any of these prefixes, for example "HTTP_BT", will not appear on the graph. However, the prefixes are case-sensitive, therefore "http_BT" is a valid sample_name.

Return Values

This function returns 0 if it succeeds, and -1 if it fails to write the sampled data.

Parameterization

All string arguments (char type) can be parameterized using standard parameterization.

Example

In the following example, the CPU is checked every second, and the data stored in a data point variable.

while (true) {
            lr.user_data_point( "Sessions" , orTrader.getSessionsCount() );
            lr.think_time(1);
    }