Module Values.MetricsSource

Information about the statistics from the code review.

Sourcetype nonrec t = {
  1. meteredLinesOfCodeCount : LinesOfCodeCount.t option;
    (*

    MeteredLinesOfCodeCount is the number of lines of code in the repository where the code review happened. This does not include non-code lines such as comments and blank lines.

    *)
  2. suppressedLinesOfCodeCount : LinesOfCodeCount.t option;
    (*

    SuppressedLinesOfCodeCount is the number of lines of code in the repository where the code review happened that CodeGuru Reviewer did not analyze. The lines suppressed in the analysis is based on the excludeFiles variable in the aws-codeguru-reviewer.yml file. This number does not include non-code lines such as comments and blank lines.

    *)
  3. findingsCount : FindingsCount.t option;
    (*

    Total number of recommendations found in the code review.

    *)
}
Sourceval make : ?meteredLinesOfCodeCount:??? -> ?suppressedLinesOfCodeCount:??? -> ?findingsCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of LinesOfCodeCount.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