Module Values.IngestedFilesSummarySource

Gives statistics about how many files have been ingested, and which files have not been ingested, for a particular ingestion job.

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

    Indicates the total number of files that were submitted for ingestion.

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

    Indicates the number of files that were successfully ingested.

    *)
  3. discardedFiles : ListOfDiscardedFiles.t option;
    (*

    Indicates the number of files that were discarded. A file could be discarded because its format is invalid (for example, a jpg or pdf) or not readable.

    *)
}
Sourceval make : ?totalNumberOfFiles:??? -> ?ingestedNumberOfFiles:??? -> ?discardedFiles:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of S3Bucket.t ]) list ] list ]) 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