public class Result extends Result
Modifier and Type | Method and Description |
---|---|
double[] |
get90thPctResponse()
Obtains the 90th percentile of the response time of each operation.
|
double |
get90thPctResponse(String opsName)
Obtains the 90th percentile of the response time for a given operation.
|
double[] |
getAvgResponse()
Obtains the average response time of each operation.
|
double |
getAvgResponse(String opsName)
Obtains the average response time of a given operation.
|
static Result |
getInstance()
Obtains the result instance used for programmatic access to the result.
|
double[] |
getMaxResponse()
Obtains the maximum response time of each operation.
|
double |
getMaxResponse(String opsName)
Obtains the maximum response time of a given operation.
|
double |
getMetric()
Obtains the throughput metric the run has achieved.
|
int[] |
getOpsCountSteady()
Obtains the number of operations of each type successfully
executed during steady state.
|
int |
getOpsCountSteady(String opsName)
Obtains the number of operations of a certain type successfully
executed during steady state.
|
int[] |
getOpsCountTotal()
Obtains the number of operatioins of each type successfully executed
during the whole run.
|
int |
getOpsCountTotal(String opsName)
Obtains the number of operations of a certain type successfully executed
during the whole run.
|
double[] |
getOpsMix()
Obtains the actual mix of each operation.
|
double |
getOpsMix(String opsName)
Obtains the actual mix of the operation.
|
String[] |
getOpsNames()
Obtains the defined operation names, in sequence.
|
double[] |
getResponseSD()
Obtains the standard deviation of the response time of each operation.
|
double |
getResponseSD(String opsName)
Obtains the standard deviation of the response time for a given
operation.
|
int |
getScale()
Obtains the scale of the run.
|
int |
getSteadyState()
Obtains the steady state time or cycles of the run, dependent on the
run control.
|
public static Result getInstance()
public int getSteadyState()
getSteadyState
in class Result
public int getScale()
public double getMetric()
public String[] getOpsNames()
getOpsNames
in class Result
public int getOpsCountSteady(String opsName)
getOpsCountSteady
in class Result
opsName
- The name of the operation to querypublic int[] getOpsCountSteady()
getOpsCountSteady
in class Result
public int getOpsCountTotal(String opsName)
getOpsCountTotal
in class Result
opsName
- The name of the operation to querypublic int[] getOpsCountTotal()
getOpsCountTotal
in class Result
public double getOpsMix(String opsName)
public double[] getOpsMix()
public double getAvgResponse(String opsName)
getAvgResponse
in class Result
opsName
- The name of the operation to querypublic double[] getAvgResponse()
getAvgResponse
in class Result
public double getMaxResponse(String opsName)
getMaxResponse
in class Result
opsName
- The name of the operation to querypublic double[] getMaxResponse()
getMaxResponse
in class Result
public double get90thPctResponse(String opsName)
get90thPctResponse
in class Result
opsName
- The name of the operation to querypublic double[] get90thPctResponse()
get90thPctResponse
in class Result
public double getResponseSD(String opsName)
getResponseSD
in class Result
opsName
- The name of the operation to querypublic double[] getResponseSD()
getResponseSD
in class Result