Module Values.SamplingStrategySource

The name and value of a sampling rule to apply to a trace summary.

Sourcetype nonrec t = {
  1. name : SamplingStrategyName.t option;
    (*

    The name of a sampling rule.

    *)
  2. value : NullableDouble.t option;
    (*

    The value of a sampling rule.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NullableDouble.t | `Enum of string ]) 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