Module Values.CustomerConnectorInfoSource

Inventory data for installed discovery connectors.

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

    Number of active discovery connectors.

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

    Number of healthy discovery connectors.

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

    Number of blacklisted discovery connectors.

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

    Number of discovery connectors with status SHUTDOWN,

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

    Number of unhealthy discovery connectors.

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

    Total number of discovery connectors.

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

    Number of unknown discovery connectors.

    *)
}
Sourceval make : ?activeConnectors:??? -> ?healthyConnectors:??? -> ?blackListedConnectors:??? -> ?shutdownConnectors:??? -> ?unhealthyConnectors:??? -> ?totalConnectors:??? -> ?unknownConnectors:??? -> 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