Module Values.LatencySource

Represents the average latency for the slowest X percent of requests over the last 10 seconds.

Sourcetype nonrec t = {
  1. p999 : NullableDouble.t option;
    (*

    The average latency for the slowest 0.1 percent of requests over the last 10 seconds.

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

    The average latency for the slowest 1 percent of requests over the last 10 seconds.

    *)
  3. p95 : NullableDouble.t option;
    (*

    The average latency for the slowest 5 percent of requests over the last 10 seconds.

    *)
  4. p90 : NullableDouble.t option;
    (*

    The average latency for the slowest 10 percent of requests over the last 10 seconds.

    *)
  5. p85 : NullableDouble.t option;
    (*

    The average latency for the slowest 15 percent of requests over the last 10 seconds.

    *)
  6. p75 : NullableDouble.t option;
    (*

    The average latency for the slowest 25 percent of requests over the last 10 seconds.

    *)
  7. p50 : NullableDouble.t option;
    (*

    The average latency for the slowest 50 percent of requests over the last 10 seconds.

    *)
  8. p10 : NullableDouble.t option;
    (*

    The average latency for the slowest 90 percent of requests over the last 10 seconds.

    *)
}
Sourceval make : ?p999:??? -> ?p99:??? -> ?p95:??? -> ?p90:??? -> ?p85:??? -> ?p75:??? -> ?p50:??? -> ?p10:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NullableDouble.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