Skip to main content
Defines how alert thresholds are calculated - either manually specified or automatically computed based on historical data patterns. Values:
  • MANUAL = "manual" - User-specified static thresholds. Provides full control but requires domain knowledge to set appropriately.
  • STD_DEV_AUTO_THRESHOLD = "standard_deviation_auto_threshold" - Automatic thresholds based on standard deviation. Calculates thresholds as mean ± (multiplier × std_dev) from historical data. Adapts to data patterns automatically.

Example

__str__()

Return the string value of the enum.

Returns

The enum’s string value for serialization and display.

Example