Module Values.QueryRuntimeStatisticsSource

The query execution timeline, statistics on input and output rows and bytes, and the different query stages that form the query execution plan.

Sourcetype nonrec t = {
  1. timeline : QueryRuntimeStatisticsTimeline.t option;
  2. rows : QueryRuntimeStatisticsRows.t option;
  3. outputStage : QueryStage.t option;
    (*

    Stage statistics such as input and output rows and bytes, execution time, and stage state. This information also includes substages and the query stage plan.

    *)
}
Sourceval make : ?timeline:??? -> ?rows:??? -> ?outputStage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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