metricType property
The type of metric. Possible string values are:
- "METRIC_TYPE_UNSPECIFIED" : The default value. Metric type should always be set to one of the other non-default values, otherwise it will result in an INVALID_ARGUMENT error.
- "EVENT_ERROR_RATE" : Specifies alerting on the rate of errors for the enclosing integration.
- "EVENT_WARNING_RATE" : Specifies alerting on the rate of warnings for the enclosing integration. Warnings use the same enum values as errors.
- "TASK_ERROR_RATE" : Specifies alerting on the rate of errors for any task in the enclosing integration.
- "TASK_WARNING_RATE" : Specifies alerting on the rate of warnings for any task in the enclosing integration.
- "TASK_RATE" : Specifies alerting on the rate of executions over all tasks in the enclosing integration.
- "EVENT_RATE" : Specifies alerting on the number of events executed in the given aggregation_period.
- "EVENT_AVERAGE_DURATION" : Specifies alerting on the average duration of executions for this integration.
- "EVENT_PERCENTILE_DURATION" : Specifies alerting on the duration value of a particular percentile of integration executions. E.g. If 10% or more of the integration executions have durations above 5 seconds, alert.
- "TASK_AVERAGE_DURATION" : Specifies alerting on the average duration of any task in the enclosing integration,
- "TASK_PERCENTILE_DURATION" : Specifies alerting on the duration value of a particular percentile of any task executions within the enclosing integration. E.g. If 10% or more of the task executions in the integration have durations above 5 seconds, alert.
Implementation
core.String? metricType;