Module Values.JobMetricsSource

An object containing inputRecords, totalRecordsProcessed, matchIDs, and recordsNotProcessed.

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

    The total number of input records.

    *)
  2. totalRecordsProcessed : Integer.t option;
    (*

    The total number of records processed.

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

    The total number of records that did not get processed.

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

    The number of records processed that were marked for deletion (DELETE = True) in the input file. This metric tracks records flagged for removal during the job execution.

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

    The total number of matchIDs generated.

    *)
}
Sourceval make : ?inputRecords:??? -> ?totalRecordsProcessed:??? -> ?recordsNotProcessed:??? -> ?deleteRecordsProcessed:??? -> ?matchIDs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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