Module Values_0.MetricPointSource

Indicates 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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
  3. value : Float_.t option;
  4. status : String_.t option;
    (*

    The status of the metric point.

    *)
}
Sourceval make : ?startDate:??? -> ?endDate:??? -> ?value:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.t | `String of String_.t | `Timestamp of MillisecondDateTime.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