Showing 6 of 10 total issues
Method run
has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring. Open
Open
def run # rubocop:disable Metrics/AbcSize
stats = get_logstash_resource('/_node/stats')
timestamp = Time.now.to_i
node = stats
- 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 run
has 70 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
def run # rubocop:disable Metrics/AbcSize
stats = get_logstash_resource('/_node/stats')
timestamp = Time.now.to_i
node = stats
Consider simplifying this complex logical expression. Open
Open
elsif node.key?('pipelines')
node['pipelines'].each_key do |pipeline|
if node['pipelines'][pipeline]['events'].nil? || node['pipelines'][pipeline]['events'] == 'null'
# Skip
else
Consider simplifying this complex logical expression. Open
Open
if node.key?('pipeline')
node['pipeline']['events'].each do |key, value|
metrics["pipeline.events.#{key}"] = value
end
Method handle
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
def handle
time = Time.now.utc.iso8601
logstash_msg = {
:@timestamp => time,
:@version => 1,
Method get_logstash_resource
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
def get_logstash_resource(resource)
headers = {}
if config[:user] && config[:password]
auth = 'Basic ' + Base64.encode64("#{config[:user]}:#{config[:password]}").chomp
headers = { 'Authorization' => auth }
- 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"