operator property

String? operator
getter/setter pair

Is the metric EQUAL, LESS_THAN or GREATER_THAN the comparisonValue, the default is EQUAL.

If the operator is IS_MISSING, checks if the metric is missing and would ignore the comparisonValue. Possible string values are:

  • "OPERATOR_UNSPECIFIED" : If the operator is not specified, it is treated as EQUAL.
  • "EQUAL" : Should the value of the metric be exactly equal to the comparison value.
  • "LESS_THAN" : Should the value of the metric be less than to the comparison value.
  • "GREATER_THAN" : Should the value of the metric be greater than to the comparison value.
  • "IS_MISSING" : Validates if the metric is missing. Doesn't take comparisonValue into account.

Implementation

core.String? operator;