Module Values.ExecutionStatsSource

Statistics for a single scheduled query run.

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

    Total time, measured in milliseconds, that was needed for the scheduled query run to complete.

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

    Data writes metered for records ingested in a single scheduled query run.

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

    Bytes metered for a single scheduled query run.

    *)
  4. cumulativeBytesScanned : Long.t option;
    (*

    Bytes scanned for a single scheduled query run.

    *)
  5. recordsIngested : Long.t option;
    (*

    The number of records ingested for a single scheduled query run.

    *)
  6. queryResultRows : Long.t option;
    (*

    Number of rows present in the output from running a query before ingestion to destination data source.

    *)
}
Sourceval make : ?executionTimeInMillis:??? -> ?dataWrites:??? -> ?bytesMetered:??? -> ?cumulativeBytesScanned:??? -> ?recordsIngested:??? -> ?queryResultRows:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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