Class: Aws::CodeGuruReviewer::Types::Metrics
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::Metrics
- Defined in:
- gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb
Overview
Information about the statistics from the code review.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#findings_count ⇒ Integer
Total number of recommendations found in the code review.
-
#metered_lines_of_code_count ⇒ Integer
MeteredLinesOfCodeCount
is the number of lines of code in the repository where the code review happened. -
#suppressed_lines_of_code_count ⇒ Integer
SuppressedLinesOfCodeCount
is the number of lines of code in the repository where the code review happened that CodeGuru Reviewer did not analyze.
Instance Attribute Details
#findings_count ⇒ Integer
Total number of recommendations found in the code review.
1147 1148 1149 1150 1151 1152 1153 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1147 class Metrics < Struct.new( :metered_lines_of_code_count, :suppressed_lines_of_code_count, :findings_count) SENSITIVE = [] include Aws::Structure end |
#metered_lines_of_code_count ⇒ Integer
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.
1147 1148 1149 1150 1151 1152 1153 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1147 class Metrics < Struct.new( :metered_lines_of_code_count, :suppressed_lines_of_code_count, :findings_count) SENSITIVE = [] include Aws::Structure end |
#suppressed_lines_of_code_count ⇒ Integer
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.
1147 1148 1149 1150 1151 1152 1153 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1147 class Metrics < Struct.new( :metered_lines_of_code_count, :suppressed_lines_of_code_count, :findings_count) SENSITIVE = [] include Aws::Structure end |