Module Values.EdgeAgentStatusSource

An object that contains the latest status details for an edge agent's recorder and uploader jobs. Use this information to determine the current health of an edge agent.

Sourcetype nonrec t = {
  1. lastRecorderStatus : LastRecorderStatus.t option;
    (*

    The latest status of a stream’s edge recording job.

    *)
  2. lastUploaderStatus : LastUploaderStatus.t option;
    (*

    The latest status of a stream’s edge to cloud uploader job.

    *)
}
Sourceval make : ?lastRecorderStatus:??? -> ?lastUploaderStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of JobStatusDetails.t | `Timestamp of Timestamp.t ]) 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