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