Module Values.FindingMetricsValuePerSeveritySource

A numeric value corresponding to the severity of a finding, such as the number of open findings or the average time it takes to close findings of a given severity.

Sourcetype nonrec t = {
  1. info : Double.t option;
    (*

    A numeric value corresponding to an informational finding.

    *)
  2. low : Double.t option;
    (*

    A numeric value corresponding to a low severity finding.

    *)
  3. medium : Double.t option;
    (*

    A numeric value corresponding to a medium severity finding.

    *)
  4. high : Double.t option;
    (*

    A numeric value corresponding to a high severity finding.

    *)
  5. critical : Double.t option;
    (*

    A numeric value corresponding to a critical finding.

    *)
}
Sourceval make : ?info:??? -> ?low:??? -> ?medium:??? -> ?high:??? -> ?critical:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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