mirror of
https://github.com/apache/superset.git
synced 2026-06-02 14:19:21 +00:00
* Use py3's f-strings instead of s.format(**locals()) In light of the bug reported here https://github.com/apache/incubator-superset/issues/6347, which seems like an odd `.format()` issue in py3, I greped and replaced all instances of `.format(**locals())` using py3's f-strings * lint * fix tests
79 lines
1.9 KiB
Python
79 lines
1.9 KiB
Python
# pylint: disable=C,R,W
|
|
import logging
|
|
|
|
from colorama import Fore, Style
|
|
|
|
|
|
class BaseStatsLogger(object):
|
|
"""Base class for logging realtime events"""
|
|
|
|
def __init__(self, prefix='superset'):
|
|
self.prefix = prefix
|
|
|
|
def key(self, key):
|
|
if self.prefix:
|
|
return self.prefix + key
|
|
return key
|
|
|
|
def incr(self, key):
|
|
"""Increment a counter"""
|
|
raise NotImplementedError()
|
|
|
|
def decr(self, key):
|
|
"""Decrement a counter"""
|
|
raise NotImplementedError()
|
|
|
|
def timing(self, key, value):
|
|
raise NotImplementedError()
|
|
|
|
def gauge(self, key):
|
|
"""Setup a gauge"""
|
|
raise NotImplementedError()
|
|
|
|
|
|
class DummyStatsLogger(BaseStatsLogger):
|
|
def incr(self, key):
|
|
logging.debug(
|
|
Fore.CYAN + '[stats_logger] (incr) ' + key + Style.RESET_ALL)
|
|
|
|
def decr(self, key):
|
|
logging.debug((
|
|
Fore.CYAN + '[stats_logger] (decr) ' + key +
|
|
Style.RESET_ALL))
|
|
|
|
def timing(self, key, value):
|
|
logging.debug((
|
|
Fore.CYAN +
|
|
f'[stats_logger] (timing) {key} | {value} ' +
|
|
Style.RESET_ALL))
|
|
|
|
def gauge(self, key, value):
|
|
logging.debug((
|
|
Fore.CYAN + '[stats_logger] (gauge) ' +
|
|
f'{key} | {value}' +
|
|
Style.RESET_ALL))
|
|
|
|
|
|
try:
|
|
from statsd import StatsClient
|
|
|
|
class StatsdStatsLogger(BaseStatsLogger):
|
|
def __init__(self, host, port, prefix='superset'):
|
|
self.client = StatsClient(host=host, port=port, prefix=prefix)
|
|
|
|
def incr(self, key):
|
|
self.client.incr(key)
|
|
|
|
def decr(self, key):
|
|
self.client.decr(key)
|
|
|
|
def timing(self, key, value):
|
|
self.client.timing(key, value)
|
|
|
|
def gauge(self, key):
|
|
# pylint: disable=no-value-for-parameter
|
|
self.client.gauge(key)
|
|
|
|
except Exception:
|
|
pass
|