operator property

String? operator
getter/setter pair

Specifies is the operation to perform to compare the metric.

The default is EQUAL. Possible string values are:

  • "UNSPECIFIED_OPERATOR" : Unspecified operator is treated as LESS_THAN operator.
  • "LESS_THAN" : Checks if the metric value is less than comparison value.
  • "GREATER_THAN" : Checks if the metric value is greater than comparison value.
  • "EQUAL" : Equals operator.
  • "BETWEEN" : For between operator, both the minimum and maximum are exclusive. We will use LT and GT for comparison.

Implementation

core.String? operator;