rycus86/prometheus_flask_exporter

View on GitHub

Showing 26 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

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

    class MultiprocessInternalPrometheusMetrics(MultiprocessPrometheusMetrics):
        """
        A multiprocess `PrometheusMetrics` extension with the metrics endpoint
        registered on the Flask app internally.
        This variant is expected to expose the metrics endpoint on the same server
    Severity: Major
    Found in prometheus_flask_exporter/multiprocess.py and 1 other location - About 5 hrs to fix
    prometheus_flask_exporter/multiprocess.py on lines 200..240

    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 91.

    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

    class GunicornInternalPrometheusMetrics(GunicornPrometheusMetrics):
        """
        A multiprocess `PrometheusMetrics` extension targeting Gunicorn deployments.
        This variant is expected to expose the metrics endpoint on the same server
        as the production endpoints are served too.
    Severity: Major
    Found in prometheus_flask_exporter/multiprocess.py and 1 other location - About 5 hrs to fix
    prometheus_flask_exporter/multiprocess.py on lines 95..126

    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 91.

    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

    Severity: Major
    Found in examples/gunicorn/server.py and 1 other location - About 4 hrs to fix
    examples/gunicorn-internal/server.py on lines 0..20

    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 83.

    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

    Severity: Major
    Found in examples/gunicorn-internal/server.py and 1 other location - About 4 hrs to fix
    examples/gunicorn/server.py on lines 0..20

    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 83.

    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

    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 _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 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

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

            @app.route("/one")
            def first_route():
                time.sleep(random.random() * 0.2)
                return "ok"
            Severity: Major
            Found in examples/sample-signals/app/app.py and 3 other locations - About 40 mins to fix
            examples/sample-signals/app/app.py on lines 21..24
            examples/sample-signals/app/app.py on lines 27..30
            examples/sample-signals/app/app.py on lines 33..36

            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 34.

            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 4 locations. Consider refactoring.
            Open

            @app.route("/three")
            def test_3rd():
                time.sleep(random.random() * 0.6)
                return "ok"
            Severity: Major
            Found in examples/sample-signals/app/app.py and 3 other locations - About 40 mins to fix
            examples/sample-signals/app/app.py on lines 15..18
            examples/sample-signals/app/app.py on lines 21..24
            examples/sample-signals/app/app.py on lines 33..36

            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 34.

            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 4 locations. Consider refactoring.
            Open

            @app.route("/two")
            def the_second():
                time.sleep(random.random() * 0.4)
                return "ok"
            Severity: Major
            Found in examples/sample-signals/app/app.py and 3 other locations - About 40 mins to fix
            examples/sample-signals/app/app.py on lines 15..18
            examples/sample-signals/app/app.py on lines 27..30
            examples/sample-signals/app/app.py on lines 33..36

            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 34.

            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 4 locations. Consider refactoring.
            Open

            @app.route("/four")
            def fourth_one():
                time.sleep(random.random() * 0.8)
                return "ok"
            Severity: Major
            Found in examples/sample-signals/app/app.py and 3 other locations - About 40 mins to fix
            examples/sample-signals/app/app.py on lines 15..18
            examples/sample-signals/app/app.py on lines 21..24
            examples/sample-signals/app/app.py on lines 27..30

            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 34.

            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

            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 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
                  Severity
                  Category
                  Status
                  Source
                  Language