Enum BenchReport.ReportMetricId
- java.lang.Object
-
- java.lang.Enum<BenchReport.ReportMetricId>
-
- us.abstracta.jmeter.javadsl.octoperf.api.BenchReport.ReportMetricId
-
- All Implemented Interfaces:
Serializable,Comparable<BenchReport.ReportMetricId>
- Enclosing class:
- BenchReport
public static enum BenchReport.ReportMetricId extends Enum<BenchReport.ReportMetricId>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BenchReport.ReportMetricIdvalueOf(String name)Returns the enum constant of this type with the specified name.static BenchReport.ReportMetricId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSERTIONS_ERROR_TOTAL
public static final BenchReport.ReportMetricId ASSERTIONS_ERROR_TOTAL
-
ASSERTIONS_FAILURE_TOTAL
public static final BenchReport.ReportMetricId ASSERTIONS_FAILURE_TOTAL
-
ASSERTIONS_SUCCESS_TOTAL
public static final BenchReport.ReportMetricId ASSERTIONS_SUCCESS_TOTAL
-
CONNECT_TIME_APDEX
public static final BenchReport.ReportMetricId CONNECT_TIME_APDEX
-
CONNECT_TIME_AVG
public static final BenchReport.ReportMetricId CONNECT_TIME_AVG
-
CONNECT_TIME_MAX
public static final BenchReport.ReportMetricId CONNECT_TIME_MAX
-
CONNECT_TIME_MIN
public static final BenchReport.ReportMetricId CONNECT_TIME_MIN
-
CONNECT_TIME_STD
public static final BenchReport.ReportMetricId CONNECT_TIME_STD
-
CONNECT_TIME_VAR
public static final BenchReport.ReportMetricId CONNECT_TIME_VAR
-
ERRORS_TOTAL
public static final BenchReport.ReportMetricId ERRORS_TOTAL
-
ERRORS_RATE
public static final BenchReport.ReportMetricId ERRORS_RATE
-
ERRORS_PERCENT
public static final BenchReport.ReportMetricId ERRORS_PERCENT
-
HITS_RATE
public static final BenchReport.ReportMetricId HITS_RATE
-
HITS_TOTAL
public static final BenchReport.ReportMetricId HITS_TOTAL
-
HITS_SUCCESSFUL_TOTAL
public static final BenchReport.ReportMetricId HITS_SUCCESSFUL_TOTAL
-
HITS_SUCCESSFUL_PERCENT
public static final BenchReport.ReportMetricId HITS_SUCCESSFUL_PERCENT
-
HTTP_MEDIA_TYPES
public static final BenchReport.ReportMetricId HTTP_MEDIA_TYPES
-
HTTP_MEDIA_TYPES_THROUGHPUT
public static final BenchReport.ReportMetricId HTTP_MEDIA_TYPES_THROUGHPUT
-
HTTP_METHODS
public static final BenchReport.ReportMetricId HTTP_METHODS
-
HTTP_RESPONSE_CODES
public static final BenchReport.ReportMetricId HTTP_RESPONSE_CODES
-
LATENCY_APDEX
public static final BenchReport.ReportMetricId LATENCY_APDEX
-
LATENCY_AVG
public static final BenchReport.ReportMetricId LATENCY_AVG
-
LATENCY_MAX
public static final BenchReport.ReportMetricId LATENCY_MAX
-
LATENCY_MIN
public static final BenchReport.ReportMetricId LATENCY_MIN
-
LATENCY_STD
public static final BenchReport.ReportMetricId LATENCY_STD
-
LATENCY_VAR
public static final BenchReport.ReportMetricId LATENCY_VAR
-
MONITORING
public static final BenchReport.ReportMetricId MONITORING
-
NETWORK_TIME_AVG
public static final BenchReport.ReportMetricId NETWORK_TIME_AVG
-
NETWORK_TIME_MAX
public static final BenchReport.ReportMetricId NETWORK_TIME_MAX
-
NETWORK_TIME_MIN
public static final BenchReport.ReportMetricId NETWORK_TIME_MIN
-
NETWORK_TIME_VAR
public static final BenchReport.ReportMetricId NETWORK_TIME_VAR
-
RESPONSE_TIME_APDEX
public static final BenchReport.ReportMetricId RESPONSE_TIME_APDEX
-
RESPONSE_TIME_AVG
public static final BenchReport.ReportMetricId RESPONSE_TIME_AVG
-
RESPONSE_TIME_MAX
public static final BenchReport.ReportMetricId RESPONSE_TIME_MAX
-
RESPONSE_TIME_MEDIAN
public static final BenchReport.ReportMetricId RESPONSE_TIME_MEDIAN
-
RESPONSE_TIME_MIN
public static final BenchReport.ReportMetricId RESPONSE_TIME_MIN
-
RESPONSE_TIME_PERCENTILE_80
public static final BenchReport.ReportMetricId RESPONSE_TIME_PERCENTILE_80
-
RESPONSE_TIME_PERCENTILE_90
public static final BenchReport.ReportMetricId RESPONSE_TIME_PERCENTILE_90
-
RESPONSE_TIME_PERCENTILE_95
public static final BenchReport.ReportMetricId RESPONSE_TIME_PERCENTILE_95
-
RESPONSE_TIME_PERCENTILE_99
public static final BenchReport.ReportMetricId RESPONSE_TIME_PERCENTILE_99
-
RESPONSE_TIME_STD
public static final BenchReport.ReportMetricId RESPONSE_TIME_STD
-
RESPONSE_TIME_VAR
public static final BenchReport.ReportMetricId RESPONSE_TIME_VAR
-
RESPONSE_SIZE
public static final BenchReport.ReportMetricId RESPONSE_SIZE
-
SENT_BYTES_AVG
public static final BenchReport.ReportMetricId SENT_BYTES_AVG
-
SENT_BYTES_MAX
public static final BenchReport.ReportMetricId SENT_BYTES_MAX
-
SENT_BYTES_MIN
public static final BenchReport.ReportMetricId SENT_BYTES_MIN
-
SENT_BYTES_RATE
public static final BenchReport.ReportMetricId SENT_BYTES_RATE
-
SENT_BYTES_STD
public static final BenchReport.ReportMetricId SENT_BYTES_STD
-
SENT_BYTES_TOTAL
public static final BenchReport.ReportMetricId SENT_BYTES_TOTAL
-
THROUGHPUT_RATE
public static final BenchReport.ReportMetricId THROUGHPUT_RATE
-
THROUGHPUT_TOTAL
public static final BenchReport.ReportMetricId THROUGHPUT_TOTAL
-
USERLOAD
public static final BenchReport.ReportMetricId USERLOAD
-
-
Method Detail
-
values
public static BenchReport.ReportMetricId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BenchReport.ReportMetricId c : BenchReport.ReportMetricId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BenchReport.ReportMetricId valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-