Module Values.NetworkResourceUtilizationSource

The network field that contains a list of network metrics that are associated with the current instance.

Sourcetype nonrec t = {
  1. networkInBytesPerSecond : GenericString.t option;
    (*

    The network inbound throughput utilization measured in Bytes per second (Bps).

    *)
  2. networkOutBytesPerSecond : GenericString.t option;
    (*

    The network outbound throughput utilization measured in Bytes per second (Bps).

    *)
  3. networkPacketsInPerSecond : GenericString.t option;
    (*

    The network inbound packets that are measured in packets per second.

    *)
  4. networkPacketsOutPerSecond : GenericString.t option;
    (*

    The network outbound packets that are measured in packets per second.

    *)
}
Sourceval make : ?networkInBytesPerSecond:??? -> ?networkOutBytesPerSecond:??? -> ?networkPacketsInPerSecond:??? -> ?networkPacketsOutPerSecond:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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