Module Values.IngestionStatusSource

A table showing information about the most recent successful and failed attempts to ingest events.

Sourcetype nonrec t = {
  1. latestIngestionSuccessTime : Date.t option;
    (*

    The time stamp of the most recent successful ingestion of events for the channel.

    *)
  2. latestIngestionSuccessEventID : UUID.t option;
    (*

    The event ID of the most recent successful ingestion of events.

    *)
  3. latestIngestionErrorCode : ErrorMessage.t option;
    (*

    The error code for the most recent failure to ingest events.

    *)
  4. latestIngestionAttemptTime : Date.t option;
    (*

    The time stamp of the most recent attempt to ingest events on the channel.

    *)
  5. latestIngestionAttemptEventID : UUID.t option;
    (*

    The event ID of the most recent attempt to ingest events.

    *)
}
Sourceval make : ?latestIngestionSuccessTime:??? -> ?latestIngestionSuccessEventID:??? -> ?latestIngestionErrorCode:??? -> ?latestIngestionAttemptTime:??? -> ?latestIngestionAttemptEventID:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.t | `Timestamp of Date.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