TriggerArgs

data class TriggerArgs(val count: Output<Int>? = null, val percent: Output<Double>? = null) : ConvertibleToJava<TriggerArgs>

Specifies how many time series must fail a predicate to trigger a condition. If not specified, then a {count: 1} trigger is used.

Constructors

Link copied to clipboard
fun TriggerArgs(count: Output<Int>? = null, percent: Output<Double>? = null)

Functions

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

Properties

Link copied to clipboard
val count: Output<Int>? = null

The absolute number of time series that must fail the predicate for the condition to be triggered.

Link copied to clipboard
val percent: Output<Double>? = null

The percentage of time series that must fail the predicate for the condition to be triggered.