sensu-plugins/sensu-plugins-mysql

View on GitHub

Showing 30 of 66 total issues

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

  def run
    if config[:ini]
      ini = IniFile.load(config[:ini])
      section = ini[config[:ini_section]]
      db_user = section['user']
Severity: Minor
Found in bin/check-mysql-connections.rb - About 1 hr to fix

    Method run has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

      def run
        if config[:ini]
          ini = IniFile.load(config[:ini])
          section = ini[config[:ini_section]]
          db_user = section['user']
    Severity: Minor
    Found in bin/check-mysql-innodb-lock.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 slave_metrics has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

      def slave_metrics(metrics)
        # should return a single element array containing one hash
        # #YELLOW
        mysql_shorthostname = config[:hostname].tr('.', '_')
        slave_results = Hash['a' => 100, 'b' => 200]
    Severity: Minor
    Found in bin/metrics-mysql-raw.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 configuration_metrics has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def configuration_metrics(metrics, db_user, db_pass, db_socket)
        mysql_shorthostname = config[:hostname].tr('.', '_')
        table = []
        cmd = "#{config[:binary]} -u #{db_user} -h #{config[:hostname]} \
    --port #{config[:port]} --socket #{db_socket} -p\"#{db_pass.chomp}\" --batch \
    Severity: Minor
    Found in bin/metrics-mysql-raw.rb - About 1 hr to fix

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

        def run
          if config[:ini]
            ini = IniFile.load(config[:ini])
            section = ini[config[:ini_section]]
            db_user = section['user']
      Severity: Minor
      Found in bin/check-mysql-select-count.rb - About 1 hr to fix

        Method run has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

          def run
            if config[:ini]
              ini = IniFile.load(config[:ini])
              section = ini[config[:ini_section]]
              db_user = section['user']
        Severity: Minor
        Found in bin/check-mysql-query-result-count.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 run has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def run
            if config[:ini]
              ini = IniFile.load(config[:ini])
              section = ini[config[:ini_section]]
              db_user = section['user']
        Severity: Minor
        Found in bin/metrics-mysql-multiple-select-count.rb - About 1 hr to fix

          Method run has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

            def run
              if config[:ini]
                ini = IniFile.load(config[:ini])
                section = ini[config[:ini_section]]
                db_user = section['user']
          Severity: Minor
          Found in bin/metrics-mysql-select-count.rb - About 55 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 run has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

            def run
              if config[:ini]
                ini = IniFile.load(config[:ini])
                section = ini[config[:ini_section]]
                db_user = section['user']
          Severity: Minor
          Found in bin/check-mysql-disk.rb - About 55 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 run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            def run
              if config[:ini]
                ini = IniFile.load(config[:ini])
                section = ini[config[:ini_section]]
                db_user = section['user']
          Severity: Minor
          Found in bin/metrics-mysql-query-result-count.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

          Severity
          Category
          Status
          Source
          Language