Skip to main content
Threshold determination algorithms for alert rules. Defines how alert thresholds are calculated - either manually specified or automatically computed based on historical data patterns.

MANUAL

User-specified static thresholds. Provides full control but requires domain knowledge to set appropriately.

STD_DEV_AUTO_THRESHOLD

Automatic thresholds based on standard deviation. Calculates thresholds as mean ± (multiplier × std_dev) from historical data. Adapts to data patterns automatically.

Example

MANUAL = ‘manual’

STD_DEV_AUTO_THRESHOLD = ‘standard_deviation_auto_threshold’

str()

Return the string value of the enum.

Returns

The enum’s string value for serialization and display.

Example