__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from timeit import default_timer
from types import TracebackType
from typing import (
Any, Callable, Literal, Optional, Tuple, Type, TYPE_CHECKING, TypeVar,
Union,
)
from .decorator import decorate
if TYPE_CHECKING:
from . import Counter
F = TypeVar("F", bound=Callable[..., Any])
class ExceptionCounter:
def __init__(self, counter: "Counter", exception: Union[Type[BaseException], Tuple[Type[BaseException], ...]]) -> None:
self._counter = counter
self._exception = exception
def __enter__(self) -> None:
pass
def __exit__(self, typ: Optional[Type[BaseException]], value: Optional[BaseException], traceback: Optional[TracebackType]) -> Literal[False]:
if isinstance(value, self._exception):
self._counter.inc()
return False
def __call__(self, f: "F") -> "F":
def wrapped(func, *args, **kwargs):
with self:
return func(*args, **kwargs)
return decorate(f, wrapped)
class InprogressTracker:
def __init__(self, gauge):
self._gauge = gauge
def __enter__(self):
self._gauge.inc()
def __exit__(self, typ, value, traceback):
self._gauge.dec()
def __call__(self, f: "F") -> "F":
def wrapped(func, *args, **kwargs):
with self:
return func(*args, **kwargs)
return decorate(f, wrapped)
class Timer:
def __init__(self, metric, callback_name):
self._metric = metric
self._callback_name = callback_name
def _new_timer(self):
return self.__class__(self._metric, self._callback_name)
def __enter__(self):
self._start = default_timer()
return self
def __exit__(self, typ, value, traceback):
# Time can go backwards.
duration = max(default_timer() - self._start, 0)
callback = getattr(self._metric, self._callback_name)
callback(duration)
def labels(self, *args, **kw):
self._metric = self._metric.labels(*args, **kw)
def __call__(self, f: "F") -> "F":
def wrapped(func, *args, **kwargs):
# Obtaining new instance of timer every time
# ensures thread safety and reentrancy.
with self._new_timer():
return func(*args, **kwargs)
return decorate(f, wrapped)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| bridge | Folder | 0755 |
|
|
| openmetrics | Folder | 0755 |
|
|
| twisted | Folder | 0755 |
|
|
| __init__.py | File | 1.77 KB | 0644 |
|
| asgi.py | File | 1.57 KB | 0644 |
|
| context_managers.py | File | 2.29 KB | 0644 |
|
| core.py | File | 860 B | 0644 |
|
| decorator.py | File | 15.43 KB | 0644 |
|
| exposition.py | File | 25.56 KB | 0644 |
|
| gc_collector.py | File | 1.48 KB | 0644 |
|
| metrics.py | File | 27.45 KB | 0644 |
|
| metrics_core.py | File | 15.18 KB | 0644 |
|
| mmap_dict.py | File | 5.27 KB | 0644 |
|
| multiprocess.py | File | 7.36 KB | 0644 |
|
| parser.py | File | 7.26 KB | 0644 |
|
| platform_collector.py | File | 1.83 KB | 0644 |
|
| process_collector.py | File | 3.77 KB | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| registry.py | File | 6.05 KB | 0644 |
|
| samples.py | File | 1.65 KB | 0644 |
|
| utils.py | File | 594 B | 0644 |
|
| values.py | File | 4.88 KB | 0644 |
|