Values_0.MetricPointSourceIndicates whether the network was healthy or degraded at a particular point. The value is aggregated from the startDate to the endDate. Currently only five_minutes is supported.
type nonrec t = {startDate : MillisecondDateTime.t option;The start date for the metric point. The starting date for the metric point. The starting time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-10T12:00:00.000Z.
*)endDate : MillisecondDateTime.t option;The end date for the metric point. The ending time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-12T12:00:00.000Z.
*)value : Float_.t option;status : String_.t option;The status of the metric point.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Float of Float_.t
| `String of String_.t
| `Timestamp of MillisecondDateTime.t ])
list ]