Module Values.MetricKeyDataPointsSource

A time-ordered series of data points, corresponding to a dimension of a Performance Insights metric.

Sourcetype nonrec t = {
  1. key : ResponseResourceMetricKey.t option;
    (*

    The dimensions to which the data points apply.

    *)
  2. dataPoints : DataPointsList.t option;
    (*

    An array of timestamp-value pairs, representing measurements over a period of time.

    *)
}
Sourceval make : ?key:??? -> ?dataPoints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Timestamp of ISOTimestamp.t ]) list ] list | `Structure of (string * [> `Map of ([> `String of RequestString.t ] * [> `String of RequestString.t ]) list | `String of String_.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