Module Values.SamplingStatisticSummarySource

Aggregated request sampling data for a sampling rule across all services for a 10-second window.

Sourcetype nonrec t = {
  1. ruleName : String_.t option;
    (*

    The name of the sampling rule.

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

    The start time of the reporting window.

    *)
  3. requestCount : Integer.t option;
    (*

    The number of requests that matched the rule.

    *)
  4. borrowCount : Integer.t option;
    (*

    The number of requests recorded with borrowed reservoir quota.

    *)
  5. sampledCount : Integer.t option;
    (*

    The number of requests recorded.

    *)
}
Sourceval make : ?ruleName:??? -> ?timestamp:??? -> ?requestCount:??? -> ?borrowCount:??? -> ?sampledCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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