Method generate_probe_definitions
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def generate_probe_definitions
if File.exist?("#{path}/probe_definitions_monitors.csv")
pdf="#{path}/probe_definitions_monitors.csv"
else
pdf = "#{path}/probe_definitions.csv"
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method generate_intervention_definitions
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def generate_intervention_definitions(clusterhash)
CSV.table("#{path}/intervention_definitions.csv").each do |ck|
next unless ckhash = prephash(ck)
ckhash[:intervention_cluster_id]= clusterhash[ck[:intervention_cluster_id]]
unless ckhash[:disabled] or ckhash[:custom]
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method generate_recommended_monitors
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def generate_recommended_monitors
CSV.table("#{path}/recommended_monitors.csv").each do |ck|
next unless ckhash = prephash(ck)
ckhash[:intervention_definition_id]= definitionhash[ck[:intervention_definition_id]]
ckhash[:probe_definition_id]= probe_hash[ck[:probe_definition_id]]
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method generate_probe_definition_benchmarks
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def generate_probe_definition_benchmarks
CSV.table("#{path}/probe_definition_benchmarks.csv").each do |ck|
next unless ckhash = prephash(ck)
ckhash[:probe_definition_id]= probe_hash[ck[:probe_definition_id]]
newcd= ProbeDefinitionBenchmark.new(ckhash.except(:deleted_at,:copied_at,:copied_from))
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"