Module Values.ServiceStatisticsSource

Response statistics for a service.

Sourcetype nonrec t = {
  1. okCount : NullableLong.t option;
    (*

    The number of requests that completed with a 2xx Success status code.

    *)
  2. errorStatistics : ErrorStatistics.t option;
    (*

    Information about requests that failed with a 4xx Client Error status code.

    *)
  3. faultStatistics : FaultStatistics.t option;
    (*

    Information about requests that failed with a 5xx Server Error status code.

    *)
  4. totalCount : NullableLong.t option;
    (*

    The total number of completed requests.

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

    The aggregate response time of completed requests.

    *)
}
Sourceval make : ?okCount:??? -> ?errorStatistics:??? -> ?faultStatistics:??? -> ?totalCount:??? -> ?totalResponseTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NullableDouble.t | `Long of NullableLong.t | `Structure of (string * [> `Long of NullableLong.t ]) list ]) 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