MetricThresholdComparison

enum MetricThresholdComparison : Enum<MetricThresholdComparison> , ConvertibleToJava<MetricThresholdComparison>

The comparison to apply between the time series (indicated by filter and aggregation) and the threshold (indicated by threshold_value). The comparison is applied on each time series, with the time series on the left-hand side and the threshold on the right-hand side.Only COMPARISON_LT and COMPARISON_GT are supported currently.

Entries

Link copied to clipboard

No ordering relationship is specified.

Link copied to clipboard

True if the left argument is greater than the right argument.

Link copied to clipboard

True if the left argument is greater than or equal to the right argument.

Link copied to clipboard

True if the left argument is less than the right argument.

Link copied to clipboard

True if the left argument is less than or equal to the right argument.

Link copied to clipboard

True if the left argument is equal to the right argument.

Link copied to clipboard

True if the left argument is not equal to the right argument.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toJava(): MetricThresholdComparison
Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val javaValue: MetricThresholdComparison
Link copied to clipboard
Link copied to clipboard