Module Values.QueryStatisticsForDescribeQuerySource

Gets metadata about a query, including the number of events that were matched, the total number of events scanned, the query run time in milliseconds, and the query's creation time.

Sourcetype nonrec t = {
  1. eventsMatched : Long.t option;
    (*

    The number of events that matched a query.

    *)
  2. eventsScanned : Long.t option;
    (*

    The number of events that the query scanned in the event data store.

    *)
  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.

    *)
  4. executionTimeInMillis : Integer.t option;
    (*

    The query's run time, in milliseconds.

    *)
  5. creationTime : Date.t option;
    (*

    The creation time of the query.

    *)
}
Sourceval make : ?eventsMatched:??? -> ?eventsScanned:??? -> ?bytesScanned:??? -> ?executionTimeInMillis:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.t | `Timestamp of Date.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