Module Values.TimeRangeSource

A structure that defines the time range that you want to retrieve results from.

Sourcetype nonrec t = {
  1. after : QueryTimestamp.t;
    (*

    The beginning of the time range to retrieve performance events from.

    *)
  2. before : QueryTimestamp.t option;
    (*

    The end of the time range to retrieve performance events from. If you omit this, the time range extends to the time that this operation is performed.

    *)
}
Sourceval context_ : string
Sourceval make : ?before:??? -> after:QueryTimestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of QueryTimestamp.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