/snap/core22/2437/usr/lib/python3/dist-packages/cloudinit
NameSizeModeActions
analyze/-0755rm
cmd/-0755rm
config/-0755rm
distros/-0755rm
filters/-0755rm
handlers/-0755rm
log/-0755rm
mergers/-0755rm
net/-0755rm
reporting/-0755rm
sources/-0755rm
__pycache__/-0755rm
apport.py84960644editdlrm
atomic_helper.py28600644editdlrm
cloud.py32960644editdlrm
dmi.py80020644editdlrm
event.py20510644editdlrm
features.py57630644editdlrm
gpg.py81860644editdlrm
helpers.py165470644editdlrm
importer.py24850644editdlrm
lifecycle.py79790644editdlrm
netinfo.py246460644editdlrm
performance.py31750644editdlrm
persistence.py25830644editdlrm
registry.py10220644editdlrm
safeyaml.py103490644editdlrm
settings.py21720644editdlrm
signal_handler.py30270644editdlrm
simpletable.py19760644editdlrm
socket.py59910644editdlrm
ssh_util.py229830644editdlrm
stages.py425260644editdlrm
subp.py126580644editdlrm
templater.py79300644editdlrm
temp_utils.py30130644editdlrm
type_utils.py7030644editdlrm
url_helper.py391640644editdlrm
user_data.py147840644editdlrm
util.py929070644editdlrm
version.py5640644editdlrm
warnings.py38530644editdlrm
__init__.py00644editdlrm
Edit: /snap/core22/2437/usr/lib/python3/dist-packages/cloudinit/performance.py (3175B)
import functools import logging import time LOG = logging.getLogger(__name__) class Timed: """ A context manager which measures and optionally logs context run time. :param msg: A message that describes the thing that is being measured :param threshold: Threshold, in seconds. When the context exceeds this threshold, a log will be made. :param log_mode: Control whether to log. Defaults to "threshold". Possible values include: "always" - Always log 'msg', even when 'threshold' is not reached. "threshold" - Log when context time exceeds 'threshold'. "skip" - Do not log. Context time and message are stored in the 'output' and 'delta' attributes, respectively. Used to manually coalesce with other logs at the call site. usage: this call: ``` with Timed("Configuring the network"): run_configure() ``` might produce this log: ``` Configuring the network took 0.100 seconds ``` """ def __init__( self, msg: str, *, threshold: float = 0.01, log_mode: str = "threshold", ): self.msg = msg self.threshold = threshold self.log_mode = log_mode self.output = "" self.start = 0.0 self.delta = 0.0 def __enter__(self): self.start = time.monotonic() return self def __exit__(self, exc_type, exc_val, exc_tb): self.delta = time.monotonic() - self.start suffix = f"took {self.delta:.3f} seconds" if "always" == self.log_mode: LOG.debug("%s %s", self.msg, suffix) elif "skip" == self.log_mode: return elif "threshold" == self.log_mode: if self.delta > self.threshold: LOG.debug("%s %s", self.msg, suffix) self.output = f"{self.msg} {suffix}" else: raise ValueError( f"Invalid Timed log_mode value: '{self.log_mode}'." ) def timed(msg: str, *, threshold: float = 0.01, log_mode: str = "threshold"): """ A decorator which measures and optionally logs context run time. :param msg: A message that describes the thing that is being measured :param threshold: Threshold, in seconds. When the context exceeds this threshold, a log will be made. :param log_mode: Control whether to log. Defaults to "threshold". Possible values include: "always" - Always log 'msg', even when 'threshold' is not reached. "threshold" - Log when context time exceeds 'threshold'. usage: this call: ``` @timed("Configuring the network") def run_configure(): ... ``` might produce this log: ``` Configuring the network took 0.100 seconds ``` """ def wrapper(func): @functools.wraps(func) def decorator(*args, **kwargs): with Timed(msg, threshold=threshold, log_mode=log_mode): return func(*args, **kwargs) return decorator return wrapper