appsignal/appsignal

View on GitHub

Showing 76 of 84 total issues

File diagnose.rb has 484 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require "rbconfig"
require "etc"
require "appsignal/cli/diagnose/utils"
require "appsignal/cli/diagnose/paths"

Severity: Minor
Found in lib/appsignal/cli/diagnose.rb - About 7 hrs to fix

    Class Transaction has 42 methods (exceeds 20 allowed). Consider refactoring.
    Open

      class Transaction
        HTTP_REQUEST   = "http_request".freeze
        BACKGROUND_JOB = "background_job".freeze
        ACTION_CABLE   = "action_cable".freeze
        FRONTEND       = "frontend".freeze
    Severity: Minor
    Found in lib/appsignal/transaction.rb - About 5 hrs to fix

      File jruby.rb has 391 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      require "ffi"
      
      module Appsignal
        class Extension
          # JRuby extension wrapper
      Severity: Minor
      Found in lib/appsignal/extension/jruby.rb - About 5 hrs to fix

        Class Diagnose has 37 methods (exceeds 20 allowed). Consider refactoring.
        Open

            class Diagnose
              extend CLI::Helpers
        
              DIAGNOSE_ENDPOINT = "https://appsignal.com/diag".freeze
        
        
        Severity: Minor
        Found in lib/appsignal/cli/diagnose.rb - About 4 hrs to fix

          Method install has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
          Open

          def install
            library_type = "static"
            report["language"]["implementation"] = "ruby"
            report["build"]["library_type"] = library_type
            return unless check_architecture
          Severity: Minor
          Found in ext/extconf.rb - About 3 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

          File transaction.rb has 316 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          require "json"
          
          module Appsignal
            class Transaction
              HTTP_REQUEST   = "http_request".freeze
          Severity: Minor
          Found in lib/appsignal/transaction.rb - About 3 hrs to fix

            Method start has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
            Open

                def start
                  unless extension_loaded?
                    logger.info("Not starting appsignal, extension is not loaded")
                    return
                  end
            Severity: Minor
            Found in lib/appsignal.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

            File config.rb has 283 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            require "erb"
            require "yaml"
            require "uri"
            require "socket"
            require "tmpdir"
            Severity: Minor
            Found in lib/appsignal/config.rb - About 2 hrs to fix

              File install.rb has 268 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              require "erb"
              require "ostruct"
              require "io/console"
              require "appsignal/demo"
              
              
              Severity: Minor
              Found in lib/appsignal/cli/install.rb - About 2 hrs to fix

                Method format has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        def format(payload)
                          return unless payload[:ops]
                          return if payload[:ops].empty?
                
                          op = payload[:ops].first
                Severity: Major
                Found in lib/appsignal/event_formatter/moped/query_formatter.rb - About 2 hrs to fix

                  Method run has 54 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                          def run(push_api_key, options) # rubocop:disable Metrics/AbcSize
                            self.coloring = options.delete(:color) { true }
                            $stdout.sync = true
                  
                            puts
                  Severity: Major
                  Found in lib/appsignal/cli/install.rb - About 2 hrs to fix

                    Method agent_diagnostic_test_definition has 51 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                            def agent_diagnostic_test_definition
                              {
                                "extension" => {
                                  :label => "Extension tests",
                                  :tests => {
                    Severity: Major
                    Found in lib/appsignal/cli/diagnose.rb - About 2 hrs to fix

                      File sidekiq.rb has 251 lines of code (exceeds 250 allowed). Consider refactoring.
                      Open

                      require "yaml"
                      
                      module Appsignal
                        class Hooks
                          class SidekiqHook < Appsignal::Hooks::Hook
                      Severity: Minor
                      Found in lib/appsignal/hooks/sidekiq.rb - About 2 hrs to fix

                        Method install_callbacks has 48 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                              def install_callbacks
                                ActionCable::Channel::Base.set_callback :subscribe, :around, :prepend => true do |channel, inner|
                                  # The request is only the original websocket request
                                  env = channel.connection.env
                                  request = ActionDispatch::Request.new(env)
                        Severity: Minor
                        Found in lib/appsignal/hooks/action_cable.rb - About 1 hr to fix

                          Method command_option_parser has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                                def command_option_parser
                                  {
                                    "demo" => OptionParser.new do |o|
                                      o.banner = "Usage: appsignal demo [options]"
                          
                          
                          Severity: Minor
                          Found in lib/appsignal/cli.rb - About 1 hr to fix

                            Method tasks has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                            Open

                                def self.tasks(config)
                                  config.load do # rubocop:disable Metrics/BlockLength
                                    after "deploy", "appsignal:deploy"
                                    after "deploy:migrations", "appsignal:deploy"
                            
                            
                            Severity: Minor
                            Found in lib/appsignal/integrations/capistrano/capistrano_2_tasks.rb - About 1 hr 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 38 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                    def configure(config, environments, name_overwritten)
                                      install_for_capistrano
                            
                                      ENV["APPSIGNAL_APP_ENV"] = "development"
                            
                            
                            Severity: Minor
                            Found in lib/appsignal/cli/install.rb - About 1 hr to fix

                              Method call has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                    def call(_worker, item, _queue)
                                      job_status = nil
                                      transaction = Appsignal::Transaction.create(
                                        SecureRandom.uuid,
                                        Appsignal::Transaction::BACKGROUND_JOB,
                              Severity: Minor
                              Found in lib/appsignal/hooks/sidekiq.rb - About 1 hr to fix

                                Method tasks has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    def self.tasks(config)
                                      config.load do # rubocop:disable Metrics/BlockLength
                                        after "deploy", "appsignal:deploy"
                                        after "deploy:migrations", "appsignal:deploy"
                                
                                
                                Severity: Minor
                                Found in lib/appsignal/integrations/capistrano/capistrano_2_tasks.rb - About 1 hr to fix

                                  Method load_from_environment has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                                  Open

                                      def load_from_environment
                                        config = {}
                                  
                                        # Configuration with string type
                                        %w[APPSIGNAL_PUSH_API_KEY APPSIGNAL_APP_NAME APPSIGNAL_PUSH_API_ENDPOINT
                                  Severity: Minor
                                  Found in lib/appsignal/config.rb - About 1 hr 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

                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language