Values.EdgeStatisticsSourceResponse statistics for an edge.
type nonrec t = {okCount : NullableLong.t option;The number of requests that completed with a 2xx Success status code.
*)errorStatistics : ErrorStatistics.t option;Information about requests that failed with a 4xx Client Error status code.
*)faultStatistics : FaultStatistics.t option;Information about requests that failed with a 5xx Server Error status code.
*)totalCount : NullableLong.t option;The total number of completed requests.
*)totalResponseTime : NullableDouble.t option;The aggregate response time of completed requests.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of NullableDouble.t
| `Long of NullableLong.t
| `Structure of (string * [> `Long of NullableLong.t ]) list ])
list ]