Module Values.QueryStatisticsSource

Metadata about a query, such as the number of results.

Sourcetype nonrec t = {
  1. resultsCount : Integer.t option;
    (*

    The number of results returned.

    *)
  2. totalResultsCount : Integer.t option;
    (*

    The total number of results returned by a query.

    *)
  3. bytesScanned : Long.t option;
    (*

    The total bytes that the query scanned in the event data store. This value matches the number of bytes for which your account is billed for the query, unless the query is still running.

    *)
}
Sourceval make : ?resultsCount:??? -> ?totalResultsCount:??? -> ?bytesScanned:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.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