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
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.
- Read upRead up
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:
- Read upRead up
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.
- Read upRead up
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',
- Read upRead up
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,
Function _track
has 10 arguments (exceeds 4 allowed). Consider refactoring. Open
def _track(self, metric_type, metric_call, metric_kwargs, name, description, labels,
Function export_defaults
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
def export_defaults(self, buckets=None, group_by='path',
Function info
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
def info(self, name, description, labelnames=None, labelvalues=None, **labels):
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):
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):
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):
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):
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.
- Read upRead up
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
- Read upRead up
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.
- Read upRead up
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"