Module Values.WeightedTargetSource

An object that represents a target and its relative weight. Traffic is distributed across targets according to their relative weight. For example, a weighted target with a relative weight of 50 receives five times as much traffic as one with a relative weight of 10. The total weight for all targets combined must be less than or equal to 100.

Sourcetype nonrec t = {
  1. port : ListenerPort.t option;
    (*

    The targeted port of the weighted object.

    *)
  2. virtualNode : ResourceName.t;
    (*

    The virtual node to associate with the weighted target.

    *)
  3. weight : PercentInt.t;
    (*

    The relative weight of the weighted target.

    *)
}
Sourceval context_ : string
Sourceval make : ?port:??? -> virtualNode:ResourceName.t -> weight:PercentInt.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ListenerPort.t | `String of ResourceName.t ]) 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