Module Values.SamplingBoostSource

Temporary boost sampling rate. X-Ray calculates sampling boost for each service based on the recent sampling boost stats of all services that called GetSamplingTargets.

Sourcetype nonrec t = {
  1. boostRate : Double.t option;
    (*

    The calculated sampling boost rate for this service

    *)
  2. boostRateTTL : Timestamp.t option;
    (*

    When the sampling boost expires.

    *)
}
Sourceval make : ?boostRate:??? -> ?boostRateTTL:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Timestamp of Timestamp.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