Module Values.RuleSource

Defines the schedule configuration for an alarm mute rule. The rule contains a schedule that specifies when and how long alarms should be muted. The schedule can be a recurring pattern using cron expressions or a one-time mute window using at expressions.

Sourcetype nonrec t = {
  1. schedule : Schedule.t;
    (*

    The schedule configuration that defines when the mute rule activates and how long it remains active.

    *)
}
Sourceval context_ : string
Sourceval make : schedule:Schedule.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of Expression.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t