Module Values.OutlierDetectionSource

An object that represents the outlier detection for a virtual node's listener.

Sourcetype nonrec t = {
  1. baseEjectionDuration : Duration.t;
    (*

    The base amount of time for which a host is ejected.

    *)
  2. interval : Duration.t;
    (*

    The time interval between ejection sweep analysis.

    *)
  3. maxEjectionPercent : OutlierDetectionMaxEjectionPercent.t;
    (*

    Maximum percentage of hosts in load balancing pool for upstream service that can be ejected. Will eject at least one host regardless of the value.

    *)
  4. maxServerErrors : OutlierDetectionMaxServerErrors.t;
    (*

    Number of consecutive 5xx errors required for ejection.

    *)
}
Sourceval context_ : string
Sourceval make : baseEjectionDuration:Duration.t -> interval:Duration.t -> maxEjectionPercent:OutlierDetectionMaxEjectionPercent.t -> maxServerErrors:OutlierDetectionMaxServerErrors.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of OutlierDetectionMaxEjectionPercent.t | `Long of OutlierDetectionMaxServerErrors.t | `Structure of (string * [> `Enum of string | `Long of DurationValue.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