@videosdk.live/server-sdk
    Preparing search index...

    Interface CreateAlertRuleOptions

    interface CreateAlertRuleOptions {
        description?: string;
        domain?: AlertDomain;
        enabled?: boolean;
        name: string;
        notificationChannelIds?: string[];
        ruleConfig: AlertRuleConfig;
        severity: AlertSeverity;
        summary?: string;
        timeAggregation?: string;
    }
    Index
    description?: string
    domain?: AlertDomain
    enabled?: boolean

    Controls whether the alert is active. NOTE: surfaces as status ("active"/"paused"), not as a returned enabled field.

    name: string
    notificationChannelIds?: string[]
    ruleConfig: AlertRuleConfig
    severity: AlertSeverity
    summary?: string

    Applied to the underlying alert, but not stored on / returned by the rule record.

    timeAggregation?: string

    Used when building the alert query, but not persisted on the rule record.