mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
Fix up flake8 and unit test failures
* Make sure we default to localhost to not fail at the GAI check * Cleanup some flake8 issues in the metrics module
This commit is contained in:
parent
16a0d8b45d
commit
c7fd21ae52
@ -2,28 +2,25 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
import logging
|
||||
from functools import wraps
|
||||
from django_statsd.clients import statsd
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
from functools import wraps
|
||||
|
||||
from django_statsd.clients import statsd
|
||||
|
||||
|
||||
def task_timer(fn):
|
||||
@wraps(fn)
|
||||
def __wrapped__(self, *args, **kwargs):
|
||||
statsd.incr('tasks.{}.{}.count'.format(
|
||||
self.name.rsplit('.', 1)[-1],
|
||||
fn.__name__
|
||||
))
|
||||
self.name.rsplit('.', 1)[-1],
|
||||
fn.__name__))
|
||||
with statsd.timer('tasks.{}.{}.timer'.format(
|
||||
self.name.rsplit('.', 1)[-1],
|
||||
fn.__name__
|
||||
)):
|
||||
fn.__name__)):
|
||||
return fn(self, *args, **kwargs)
|
||||
return __wrapped__
|
||||
|
||||
|
||||
class BaseTimer(object):
|
||||
def __init__(self, name, prefix=None):
|
||||
self.name = name.rsplit('.', 1)[-1]
|
||||
@ -34,8 +31,8 @@ class BaseTimer(object):
|
||||
@wraps(fn)
|
||||
def __wrapped__(obj, *args, **kwargs):
|
||||
statsd.incr('{}.{}.count'.format(
|
||||
self.name,
|
||||
fn.__name__
|
||||
self.name,
|
||||
fn.__name__
|
||||
))
|
||||
with statsd.timer('{}.{}.timer'.format(
|
||||
self.name,
|
||||
|
@ -973,3 +973,6 @@ LOGGING = {
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
STATSD_CLIENT = 'django_statsd.clients.null'
|
||||
STATSD_HOST = 'localhost'
|
||||
|
@ -13,4 +13,7 @@ from development import * # NOQA
|
||||
DEBUG = False
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
SQL_DEBUG = DEBUG
|
||||
|
||||
# Statistics Gathering
|
||||
STATSD_CLIENT = 'django_statsd.clients.null'
|
||||
STATSD_HOST = 'localhost'
|
||||
|
Loading…
Reference in New Issue
Block a user