Module Values.NeighborConnectionDetailSource

Details about neighboring servers.

Sourcetype nonrec t = {
  1. sourceServerId : ConfigurationId.t option;
    (*

    The ID of the server that opened the network connection.

    *)
  2. destinationServerId : ConfigurationId.t option;
    (*

    The ID of the server that accepted the network connection.

    *)
  3. destinationPort : BoxedInteger.t option;
    (*

    The destination network port for the connection.

    *)
  4. transportProtocol : String_.t option;
    (*

    The network protocol used for the connection.

    *)
  5. connectionsCount : Long.t option;
    (*

    The number of open network connections with the neighboring server.

    *)
}
Sourceval make : ?sourceServerId:??? -> ?destinationServerId:??? -> ?destinationPort:??? -> ?transportProtocol:??? -> ?connectionsCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BoxedInteger.t | `Long of Long.t | `String of ConfigurationId.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