mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 22:18:01 -03:30
Fix up statsd work to support python 2.6
Format specifiers must include field specifier
This commit is contained in:
parent
3982f34392
commit
5d21ad5ae6
@ -11,10 +11,10 @@ logger = logging.getLogger(__name__)
|
||||
def task_timer(fn):
|
||||
@wraps(fn)
|
||||
def __wrapped__(self, *args, **kwargs):
|
||||
statsd.incr('tasks.{}.{}.count'.format(
|
||||
statsd.incr('tasks.{0}.{1}.count'.format(
|
||||
self.name.rsplit('.', 1)[-1],
|
||||
fn.__name__))
|
||||
with statsd.timer('tasks.{}.{}.timer'.format(
|
||||
with statsd.timer('tasks.{0}.{1}.timer'.format(
|
||||
self.name.rsplit('.', 1)[-1],
|
||||
fn.__name__)):
|
||||
return fn(self, *args, **kwargs)
|
||||
@ -25,16 +25,16 @@ class BaseTimer(object):
|
||||
def __init__(self, name, prefix=None):
|
||||
self.name = name.rsplit('.', 1)[-1]
|
||||
if prefix:
|
||||
self.name = '{}.{}'.format(prefix, self.name)
|
||||
self.name = '{0}.{1}'.format(prefix, self.name)
|
||||
|
||||
def __call__(self, fn):
|
||||
@wraps(fn)
|
||||
def __wrapped__(obj, *args, **kwargs):
|
||||
statsd.incr('{}.{}.count'.format(
|
||||
statsd.incr('{0}.{1}.count'.format(
|
||||
self.name,
|
||||
fn.__name__
|
||||
))
|
||||
with statsd.timer('{}.{}.timer'.format(
|
||||
with statsd.timer('{0}.{1}.timer'.format(
|
||||
self.name,
|
||||
fn.__name__
|
||||
)):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user