Module Values.SummarizedAttackVectorSource

A summary of information about the attack.

Sourcetype nonrec t = {
  1. vectorType : String_.t option;
    (*

    The attack type, for example, SNMP reflection or SYN flood.

    *)
  2. vectorCounters : SummarizedCounterList.t option;
    (*

    The list of counters that describe the details of the attack.

    *)
}
Sourceval make : ?vectorType:??? -> ?vectorCounters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.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