Module Values.RequestImpactStatisticsSource

Statistics that describe how the incident has impacted a service.

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

    The number of requests that have resulted in a fault,

    *)
  2. okCount : NullableLong.t option;
    (*

    The number of successful requests.

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

    The total number of requests to the service.

    *)
}
Sourceval make : ?faultCount:??? -> ?okCount:??? -> ?totalCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of NullableLong.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