Values.RawMetricDataSourceThe raw metric data to associate with the resource.
type nonrec t = {metricName : MetricName.t;The name of the metric.
*)timestamp : Timestamp.t;The time that the metric was recorded.
*)step : Step.t option;The metric step (epoch).
*)value : Double.t;The metric value.
*)}val make :
?step:??? ->
metricName:MetricName.t ->
timestamp:Timestamp.t ->
value:Double.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Double of Double.t
| `Integer of Step.t
| `String of MetricName.t
| `Timestamp of Timestamp.t ])
list ]