Module Values_0.RunMetricsSource

Metrics for the optimizer run. This structure is deprecated. See the individual metric members for compaction, retention, and orphan file deletion.

Sourcetype nonrec t = {
  1. numberOfBytesCompacted : MessageString.t option;
    (*

    The number of bytes removed by the compaction job run.

    *)
  2. numberOfFilesCompacted : MessageString.t option;
    (*

    The number of files removed by the compaction job run.

    *)
  3. numberOfDpus : MessageString.t option;
    (*

    The number of DPUs consumed by the job, rounded up to the nearest whole number.

    *)
  4. jobDurationInHour : MessageString.t option;
    (*

    The duration of the job in hours.

    *)
}
Sourceval make : ?numberOfBytesCompacted:??? -> ?numberOfFilesCompacted:??? -> ?numberOfDpus:??? -> ?jobDurationInHour:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MessageString.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