Module Values.RawMetricDataSource

The raw metric data to associate with the resource.

Sourcetype nonrec t = {
  1. metricName : MetricName.t;
    (*

    The name of the metric.

    *)
  2. timestamp : Timestamp.t;
    (*

    The time that the metric was recorded.

    *)
  3. step : Step.t option;
    (*

    The metric step (epoch).

    *)
  4. value : Double.t;
    (*

    The metric value.

    *)
}
Sourceval context_ : string
Sourceval make : ?step:??? -> metricName:MetricName.t -> timestamp:Timestamp.t -> value:Double.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Integer of Step.t | `String of MetricName.t | `Timestamp of Timestamp.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