Module Values.PerformanceInsightsMetricSource

This data type helps to determine Performance Insights metric to render for the insight.

Sourcetype nonrec t = {
  1. metric : DescriptiveString.t option;
    (*

    The Performance Insights metric.

    *)
  2. displayName : DescriptiveString.t option;
    (*

    The Performance Insights metric name.

    *)
  3. dimensions : DescriptiveMap.t option;
    (*

    A dimension map that contains the dimensions for this partition.

    *)
  4. filter : DescriptiveMap.t option;
    (*

    The filter for the Performance Insights metric.

    *)
  5. value : Double.t option;
    (*

    The value of the metric. For example, 9 for db.load.avg.

    *)
}
Sourceval make : ?metric:??? -> ?displayName:??? -> ?dimensions:??? -> ?filter:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Map of ([> `String of DescriptiveString.t ] * [> `String of DescriptiveString.t ]) list | `String of DescriptiveString.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