rycus86/prometheus_flask_exporter

View on GitHub

Showing 16 of 26 total issues

File __init__.py has 800 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import functools
import inspect
import os
import re
import sys
Severity: Major
Found in prometheus_flask_exporter/__init__.py - About 1 day to fix

    Function _track has a Cognitive Complexity of 62 (exceeds 5 allowed). Consider refactoring.
    Open

        def _track(self, metric_type, metric_call, metric_kwargs, name, description, labels,
                   initial_value_when_only_static_labels, registry, before=None, revert_when_not_tracked=None):
            """
            Internal method decorator logic.
    
    
    Severity: Minor
    Found in prometheus_flask_exporter/__init__.py - About 1 day 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 export_defaults has a Cognitive Complexity of 46 (exceeds 5 allowed). Consider refactoring.
    Open

        def export_defaults(self, buckets=None, group_by='path',
                            latency_as_histogram=True,
                            prefix='flask', app=None, **kwargs):
            """
            Export the default metrics:
    Severity: Minor
    Found in prometheus_flask_exporter/__init__.py - About 7 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 _get_combined_labels has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def _get_combined_labels(self, labels):
            """
            Combines the given labels with static and default labels
            and wraps them into an object that can efficiently return
            the keys and values of these combined labels.
    Severity: Minor
    Found in prometheus_flask_exporter/__init__.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 __init__ has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, app,
                     path='/metrics',
                     export_defaults=True,
                     defaults_prefix='flask',
                     group_by='path',
    Severity: Minor
    Found in prometheus_flask_exporter/__init__.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 __init__ has 14 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(self, app,
    Severity: Major
    Found in prometheus_flask_exporter/__init__.py - About 1 hr to fix

      Function _track has 10 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def _track(self, metric_type, metric_call, metric_kwargs, name, description, labels,
      Severity: Major
      Found in prometheus_flask_exporter/__init__.py - About 1 hr to fix

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

            def info(self, name, description, labelnames=None, labelvalues=None, **labels):
        Severity: Minor
        Found in prometheus_flask_exporter/__init__.py - About 45 mins to fix

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

              def export_defaults(self, buckets=None, group_by='path',
          Severity: Minor
          Found in prometheus_flask_exporter/__init__.py - About 45 mins to fix

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

                def summary(self, name, description, labels=None, initial_value_when_only_static_labels=True, **kwargs):
            Severity: Minor
            Found in prometheus_flask_exporter/__init__.py - About 35 mins to fix

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

                  def counter(self, name, description, labels=None, initial_value_when_only_static_labels=True, **kwargs):
              Severity: Minor
              Found in prometheus_flask_exporter/__init__.py - About 35 mins to fix

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

                    def histogram(self, name, description, labels=None, initial_value_when_only_static_labels=True, **kwargs):
                Severity: Minor
                Found in prometheus_flask_exporter/__init__.py - About 35 mins to fix

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

                      def gauge(self, name, description, labels=None, initial_value_when_only_static_labels=True, **kwargs):
                  Severity: Minor
                  Found in prometheus_flask_exporter/__init__.py - About 35 mins to fix

                    Function info has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def info(self, name, description, labelnames=None, labelvalues=None, **labels):
                            """
                            Report any information as a Prometheus metric.
                            This will create a `Gauge` with the initial value of 1.
                    
                    
                    Severity: Minor
                    Found in prometheus_flask_exporter/__init__.py - 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

                    Function register_endpoint has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def register_endpoint(self, path, app=None):
                            """
                            Register the metrics endpoint on the Flask application.
                    
                            :param path: the path of the endpoint
                    Severity: Minor
                    Found in prometheus_flask_exporter/__init__.py - 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

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

                    def _check_multiproc_env_var():
                        """
                        Checks that the `PROMETHEUS_MULTIPROC_DIR` environment variable is set,
                        which is required for the multiprocess collector to work properly.
                    
                    
                    Severity: Minor
                    Found in prometheus_flask_exporter/multiprocess.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

                    Severity
                    Category
                    Status
                    Source
                    Language