Module Values.DateStatisticsSource

Represents list a map of dates with a count of total findings generated on each date.

Sourcetype nonrec t = {
  1. date : Timestamp.t option;
    (*

    The timestamp when the total findings count is observed. For example, Date would look like "2024-09-05T17:00:00-07:00" whereas LastGeneratedAt would look like 2024-09-05T17:12:29-07:00".

    *)
  2. lastGeneratedAt : Timestamp.t option;
    (*

    The timestamp at which the last finding in the findings count, was generated.

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

    The severity of the findings generated on each date.

    *)
  4. totalFindings : Integer.t option;
    (*

    The total number of findings that were generated per severity level on each date.

    *)
}
Sourceval make : ?date:??? -> ?lastGeneratedAt:??? -> ?severity:??? -> ?totalFindings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `Timestamp of Timestamp.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