Joshua Harlow 346c27b735 Add useful 'time_it' decorator
Create a helpful decorator that can be attached to functions
or methods to show how long they take to run; internally it
uses a stop watch and provided logger to log with (and an
optional logging level to use).

An example:

>>> from oslo_utils import timeutils
>>> import logging
>>> import time
>>> logging.basicConfig(level=logging.DEBUG)
>>> logger = logging.getLogger()
>>>
>>> @timeutils.time_it(logger)
... def a():
...   time.sleep(0.2)
...
>>> a()
DEBUG:root:It took 0.20 seconds to run function '__main__.a'

Change-Id: Ia41d5b6910f7ebe2dd93aaf6ca1defe158f8310c
2015-11-13 10:29:36 -08:00
2015-11-13 10:29:36 -08:00
2015-05-05 19:39:52 +00:00
2014-06-18 23:12:10 -04:00
2015-07-15 18:20:18 +00:00
2015-09-17 16:42:28 +00:00
2015-08-08 11:41:38 +00:00

oslo.utils

Latest Version

Downloads

The oslo.utils library provides support for common utility type functions, such as encoding, exception handling, string manipulation, and time handling.

Description
OpenStack library utils
Readme 8 MiB
Languages
Python 100%