Module Values.AttackVolumeSource

Information about the volume of attacks during the time period, included in an AttackStatisticsDataItem. If the accompanying AttackCount in the statistics object is zero, this setting might be empty.

Sourcetype nonrec t = {
  1. bitsPerSecond : AttackVolumeStatistics.t option;
    (*

    A statistics object that uses bits per second as the unit. This is included for network level attacks.

    *)
  2. packetsPerSecond : AttackVolumeStatistics.t option;
    (*

    A statistics object that uses packets per second as the unit. This is included for network level attacks.

    *)
  3. requestsPerSecond : AttackVolumeStatistics.t option;
    (*

    A statistics object that uses requests per second as the unit. This is included for application level attacks, and is only available for accounts that are subscribed to Shield Advanced.

    *)
}
Sourceval make : ?bitsPerSecond:??? -> ?packetsPerSecond:??? -> ?requestsPerSecond:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of Double.t ]) 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