Module Values.CollectorSource

Process data collector that runs in the environment that you specify.

Sourcetype nonrec t = {
  1. collectorHealth : CollectorHealth.t option;
    (*

    Indicates the health of a collector.

    *)
  2. collectorId : String_.t option;
    (*

    The ID of the collector.

    *)
  3. collectorVersion : String_.t option;
    (*

    Current version of the collector that is running in the environment that you specify.

    *)
  4. configurationSummary : ConfigurationSummary.t option;
    (*

    Summary of the collector configuration.

    *)
  5. hostName : String_.t option;
    (*

    Hostname of the server that is hosting the collector.

    *)
  6. ipAddress : String_.t option;
    (*

    IP address of the server that is hosting the collector.

    *)
  7. lastActivityTimeStamp : String_.t option;
    (*

    Time when the collector last pinged the service.

    *)
  8. registeredTimeStamp : String_.t option;
    (*

    Time when the collector registered with the service.

    *)
}
Sourceval make : ?collectorHealth:??? -> ?collectorId:??? -> ?collectorVersion:??? -> ?configurationSummary:??? -> ?hostName:??? -> ?ipAddress:??? -> ?lastActivityTimeStamp:??? -> ?registeredTimeStamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `Structure of (string * [> `String of String_.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