Module Values.ReplicationStatsSource

This object provides a collection of statistics about a serverless replication.

Sourcetype nonrec t = {
  1. fullLoadProgressPercent : Integer.t option;
    (*

    The percent complete for the full load serverless replication.

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

    The elapsed time of the replication, in milliseconds.

    *)
  3. tablesLoaded : Integer.t option;
    (*

    The number of tables loaded for this replication.

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

    The number of tables currently loading for this replication.

    *)
  5. tablesQueued : Integer.t option;
    (*

    The number of tables queued for this replication.

    *)
  6. tablesErrored : Integer.t option;
    (*

    The number of errors that have occured for this replication.

    *)
  7. freshStartDate : TStamp.t option;
    (*

    The date the replication was started either with a fresh start or a target reload.

    *)
  8. startDate : TStamp.t option;
    (*

    The date the replication is scheduled to start.

    *)
  9. stopDate : TStamp.t option;
    (*

    The date the replication was stopped.

    *)
  10. fullLoadStartDate : TStamp.t option;
    (*

    The date the replication full load was started.

    *)
  11. fullLoadFinishDate : TStamp.t option;
    (*

    The date the replication full load was finished.

    *)
}
Sourceval make : ?fullLoadProgressPercent:??? -> ?elapsedTimeMillis:??? -> ?tablesLoaded:??? -> ?tablesLoading:??? -> ?tablesQueued:??? -> ?tablesErrored:??? -> ?freshStartDate:??? -> ?startDate:??? -> ?stopDate:??? -> ?fullLoadStartDate:??? -> ?fullLoadFinishDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.t | `Timestamp of TStamp.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