Module Values.CustomerAgentInfoSource

Inventory data for installed discovery agents.

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

    Number of active discovery agents.

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

    Number of healthy discovery agents

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

    Number of blacklisted discovery agents.

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

    Number of discovery agents with status SHUTDOWN.

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

    Number of unhealthy discovery agents.

    *)
  6. totalAgents : Integer.t option;
    (*

    Total number of discovery agents.

    *)
  7. unknownAgents : Integer.t option;
    (*

    Number of unknown discovery agents.

    *)
}
Sourceval make : ?activeAgents:??? -> ?healthyAgents:??? -> ?blackListedAgents:??? -> ?shutdownAgents:??? -> ?unhealthyAgents:??? -> ?totalAgents:??? -> ?unknownAgents:??? -> 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