Skip to main content

Documentation Index

Fetch the complete documentation index at: https://handbook.fiddler.ai/llms.txt

Use this file to discover all available pages before exploring further.

Time bin sizes for alert rule aggregation. Defines the time window granularity for aggregating metrics when evaluating alert rules. Smaller bin sizes provide more frequent monitoring but may be more sensitive to noise.

Example

alert_rule = AlertRule(
        name="Hourly Drift Check",
        bin_size=BinSize.HOUR,
        # ... other parameters
    )

HOUR = ‘Hour’

DAY = ‘Day’

WEEK = ‘Week’

MONTH = ‘Month’