Module Values.SeverityTrendsCountSource

Contains counts of findings grouped by severity level for trend analysis.

Sourcetype nonrec t = {
  1. unknown : TrendsValueCount.t option;
    (*

    The count of findings with Unknown severity level at this point in the trend timeline.

    *)
  2. informational : TrendsValueCount.t option;
    (*

    The count of findings with Informational severity level at this point in the trend timeline.

    *)
  3. low : TrendsValueCount.t option;
    (*

    The count of findings with Low severity level at this point in the trend timeline.

    *)
  4. medium : TrendsValueCount.t option;
    (*

    The count of findings with Medium severity level at this point in the trend timeline.

    *)
  5. high : TrendsValueCount.t option;
    (*

    The count of findings with High severity level at this point in the trend timeline.

    *)
  6. critical : TrendsValueCount.t option;
    (*

    The count of findings with Critical severity level at this point in the trend timeline.

    *)
  7. fatal : TrendsValueCount.t option;
    (*

    The count of findings with Fatal severity level at this point in the trend timeline.

    *)
  8. other : TrendsValueCount.t option;
    (*

    The count of findings with severity levels not fitting into the standard categories at this point in the trend timeline.

    *)
}
Sourceval make : ?unknown:??? -> ?informational:??? -> ?low:??? -> ?medium:??? -> ?high:??? -> ?critical:??? -> ?fatal:??? -> ?other:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of TrendsValueCount.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