Databricks SDK for JavaScript
    Preparing search index...
    interface AlertNotification {
        notifyOnOk?: boolean;
        retriggerSeconds?: number;
        subscriptions?: AlertSubscription[];
    }
    Index

    Properties

    notifyOnOk?: boolean

    Whether to notify alert subscribers when alert returns back to normal.

    retriggerSeconds?: number

    Number of seconds an alert waits after being triggered before it is allowed to send another notification. If set to 0 or omitted, the alert will not send any further notifications after the first trigger Setting this value to 1 allows the alert to send a notification on every evaluation where the condition is met, effectively making it always retrigger for notification purposes.

    subscriptions?: AlertSubscription[]