Module Values.EdgeMetricSource

Information required for edge device metrics.

Sourcetype nonrec t = {
  1. dimension : Dimension.t option;
    (*

    The dimension of metrics published.

    *)
  2. metricName : Metric.t option;
    (*

    Returns the name of the metric.

    *)
  3. value : Value.t option;
    (*

    Returns the value of the metric.

    *)
  4. timestamp : Timestamp.t option;
    (*

    Timestamp of when the metric was requested.

    *)
}
Sourceval make : ?dimension:??? -> ?metricName:??? -> ?value:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Value.t | `String of Dimension.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