Module Values.IngestionJobStatisticsSource

Contains the statistics for the data ingestion job.

Sourcetype nonrec t = {
  1. numberOfDocumentsScanned : PrimitiveLong.t option;
    (*

    The total number of source documents that were scanned. Includes new, updated, and unchanged documents.

    *)
  2. numberOfMetadataDocumentsScanned : PrimitiveLong.t option;
    (*

    The total number of metadata files that were scanned. Includes new, updated, and unchanged files.

    *)
  3. numberOfNewDocumentsIndexed : PrimitiveLong.t option;
    (*

    The number of new source documents in the data source that were successfully indexed.

    *)
  4. numberOfModifiedDocumentsIndexed : PrimitiveLong.t option;
    (*

    The number of modified source documents in the data source that were successfully indexed.

    *)
  5. numberOfMetadataDocumentsModified : PrimitiveLong.t option;
    (*

    The number of metadata files that were updated or deleted.

    *)
  6. numberOfDocumentsDeleted : PrimitiveLong.t option;
    (*

    The number of source documents that were deleted.

    *)
  7. numberOfDocumentsFailed : PrimitiveLong.t option;
    (*

    The number of source documents that failed to be ingested.

    *)
}
Sourceval make : ?numberOfDocumentsScanned:??? -> ?numberOfMetadataDocumentsScanned:??? -> ?numberOfNewDocumentsIndexed:??? -> ?numberOfModifiedDocumentsIndexed:??? -> ?numberOfMetadataDocumentsModified:??? -> ?numberOfDocumentsDeleted:??? -> ?numberOfDocumentsFailed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PrimitiveLong.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