Module Values.StatsSource

Container for the stats details.

Sourcetype nonrec t = {
  1. bytesScanned : BytesScanned.t option;
    (*

    The total number of object bytes scanned.

    *)
  2. bytesProcessed : BytesProcessed.t option;
    (*

    The total number of uncompressed object bytes processed.

    *)
  3. bytesReturned : BytesReturned.t option;
    (*

    The total number of bytes of records payload data returned.

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