fluent/fluentd

View on GitHub
lib/fluent/plugin/filter_record_transformer.rb

Summary

Maintainability
C
1 day
Test Coverage

File filter_record_transformer.rb has 255 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'socket'
require 'json'
require 'ostruct'

require 'fluent/plugin/filter'
Severity: Minor
Found in lib/fluent/plugin/filter_record_transformer.rb - About 2 hrs to fix

    Method preprocess_map has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

          def preprocess_map(value, force_stringify = false)
            new_value = nil
            if value.is_a?(String)
              if @auto_typecast && !force_stringify
                num_placeholders = value.scan('${').size
    Severity: Minor
    Found in lib/fluent/plugin/filter_record_transformer.rb - About 2 hrs to fix

    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 configure has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def configure(conf)
          super
    
          map = {}
          # <record></record> directive
    Severity: Minor
    Found in lib/fluent/plugin/filter_record_transformer.rb - About 1 hr to fix

      Method filter_stream has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def filter_stream(tag, es)
            new_es = Fluent::MultiEventStream.new
            tag_parts = tag.split('.')
            tag_prefix = tag_prefix(tag_parts)
            tag_suffix = tag_suffix(tag_parts)
      Severity: Minor
      Found in lib/fluent/plugin/filter_record_transformer.rb - About 1 hr to fix

        Method expand has 8 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                def expand(__str_to_eval__, tag, time, record, tag_parts, tag_prefix, tag_suffix, hostname)
        Severity: Major
        Found in lib/fluent/plugin/filter_record_transformer.rb - About 1 hr to fix

          Method filter_stream has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def filter_stream(tag, es)
                new_es = Fluent::MultiEventStream.new
                tag_parts = tag.split('.')
                tag_prefix = tag_prefix(tag_parts)
                tag_suffix = tag_suffix(tag_parts)
          Severity: Minor
          Found in lib/fluent/plugin/filter_record_transformer.rb - About 35 mins to fix

          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 configure has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def configure(conf)
                super
          
                map = {}
                # <record></record> directive
          Severity: Minor
          Found in lib/fluent/plugin/filter_record_transformer.rb - About 35 mins to fix

          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 reform has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def reform(record, placeholder_values)
                placeholders = @placeholder_expander.prepare_placeholders(placeholder_values)
          
                new_record = @renew_record ? {} : record.dup
                @keep_keys.each do |k|
          Severity: Minor
          Found in lib/fluent/plugin/filter_record_transformer.rb - About 35 mins to fix

          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 expand_placeholders has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              def expand_placeholders(value, placeholders)
                if value.is_a?(String)
                  new_value = @placeholder_expander.expand(value, placeholders)
                elsif value.is_a?(Hash)
                  new_value = {}
          Severity: Minor
          Found in lib/fluent/plugin/filter_record_transformer.rb - About 25 mins to fix

          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

          There are no issues that match your filters.

          Category
          Status