Module Values.GroupSource

One level of grouped data in the results.

Sourcetype nonrec t = {
  1. keys : Keys.t option;
    (*

    The keys that are included in this group.

    *)
  2. metrics : Metrics.t option;
    (*

    The metrics that are included in this group.

    *)
}
Sourceval make : ?keys:??? -> ?metrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Key.t ] list | `Map of ([> `String of MetricName.t ] * [> `Structure of (string * [> `String of MetricAmount.t ]) list ]) 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