Module Values.MetricGraphSource

A structure that contains metric data queries and time range information that provides context for audit findings through relevant performance metrics.

Sourcetype nonrec t = {
  1. metricDataQueries : MetricDataQueries.t option;
    (*

    An array of metric data queries that define the metrics to be retrieved and analyzed as part of the audit finding context.

    *)
  2. startTime : Timestamp.t option;
    (*

    The start time for the metric data included in this graph. When used in a raw HTTP Query API, it is formatted as epoch time in seconds.

    *)
  3. endTime : Timestamp.t option;
    (*

    The end time for the metric data included in this graph. When used in a raw HTTP Query API, it is formatted as epoch time in seconds.

    *)
}
Sourceval make : ?metricDataQueries:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of ReturnData.t | `Integer of Period.t | `String of MetricId.t | `Structure of (string * [> `Enum of string | `Integer of Period.t | `String of Stat.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of DimensionName.t ]) list ] list | `String of Namespace.t ]) list ]) list ]) list ] list | `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