sensu-plugins/sensu-plugins-couchbase

View on GitHub
bin/metrics-couchbase.py

Summary

Maintainability
F
3 days
Test Coverage

File metrics-couchbase.py has 366 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python
#
#   metrics-couchbase.py
#
# DESCRIPTION:
Severity: Minor
Found in bin/metrics-couchbase.py - About 4 hrs to fix

    Function graphite_printer has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

    def graphite_printer(all_stats, date, scheme, host_format=False):
      '''Takes a dict with stats_compute func structure flattens it for Graphite
      plain text protocol'''
    
      for host in all_stats:
    Severity: Minor
    Found in bin/metrics-couchbase.py - 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

    Function stats_compute has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def stats_compute(hosts_buckets_urls, stats_names, write_stats, user,
        password, cutoff, logger):
      hosts_buckets_stats = {}
      hosts_buckets_write_stats = {}
      for host_bucket_url in hosts_buckets_urls:
    Severity: Minor
    Found in bin/metrics-couchbase.py - 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

    Function urls_generator has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def urls_generator(couchbase_host, couchbase_rest_port, buckets,
        couchbase_nodes, logger, bucket_format=False):
      # This hits the same host to get all the stats but it can be changed to
      # hit each Couchbase node host for the per node stats
      '''Generate URLs from buckets and nodes to hit Couchbase REST API
    Severity: Minor
    Found in bin/metrics-couchbase.py - 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

    Function main has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    def main():
      parser = optparse.OptionParser()
    
      parser.add_option('-c', '--couchbase-host',
        help     = 'Couchbase metrics source host',
    Severity: Minor
    Found in bin/metrics-couchbase.py - About 1 hr to fix

      Function stats_compute has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def stats_compute(hosts_buckets_urls, stats_names, write_stats, user,
      Severity: Major
      Found in bin/metrics-couchbase.py - About 50 mins to fix

        Avoid deeply nested control flow statements.
        Open

                  if host_formated == 'per_bucket':
                    print "%s.%s.%s.%s.%s %s %d" % (scheme, host_formated, bucket,
                        stat_name, stats, value, date)
                  else:
                    print "%s.per_bucket_per_node.%s.%s.%s.%s %s %d" % (scheme, host_formated, bucket,
        Severity: Major
        Found in bin/metrics-couchbase.py - About 45 mins to fix

          Function urls_generator has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          def urls_generator(couchbase_host, couchbase_rest_port, buckets,
          Severity: Minor
          Found in bin/metrics-couchbase.py - About 45 mins to fix

            Function get_nodes_in_cluster has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def get_nodes_in_cluster(couchbase_host, couchbase_rest_port, user, password,
            Severity: Minor
            Found in bin/metrics-couchbase.py - About 35 mins to fix

              Function get_buckets has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              def get_buckets(couchbase_host, couchbase_rest_port, user, password, logger):
              Severity: Minor
              Found in bin/metrics-couchbase.py - About 35 mins to fix

                Function get_stats has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                def get_stats(url, user, password, cutoff, logger):
                Severity: Minor
                Found in bin/metrics-couchbase.py - About 35 mins to fix

                  Function dns_reverse_lookup has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def dns_reverse_lookup(dns_server, timeout_in_sec, ip, logger):
                    '''Tries to return a hostname doing a DNS rev lookup'''
                    dns_answered = False
                    try:
                      reversed_ip = '.'.join(ip.split('.')[::-1])
                  Severity: Minor
                  Found in bin/metrics-couchbase.py - 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

                  Function main has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def main():
                    parser = optparse.OptionParser()
                  
                    parser.add_option('-c', '--couchbase-host',
                      help     = 'Couchbase metrics source host',
                  Severity: Minor
                  Found in bin/metrics-couchbase.py - 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

                  Similar blocks of code found in 2 locations. Consider refactoring.
                  Open

                    try:
                      query = 'http://%s:%s/pools/default' % (couchbase_host, couchbase_rest_port)
                      response = requests.get(query, auth=(user, password))
                      data = response.json()
                    except Exception as e:
                  Severity: Major
                  Found in bin/metrics-couchbase.py and 1 other location - About 4 hrs to fix
                  bin/metrics-couchbase.py on lines 196..204

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 77.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Similar blocks of code found in 2 locations. Consider refactoring.
                  Open

                    try:
                      query = 'http://%s:%s/pools/default/buckets' % (couchbase_host,
                          couchbase_rest_port)
                      response = requests.get(query, auth=(user, password))
                      data = response.json()
                  Severity: Major
                  Found in bin/metrics-couchbase.py and 1 other location - About 4 hrs to fix
                  bin/metrics-couchbase.py on lines 213..220

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 77.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  There are no issues that match your filters.

                  Category
                  Status