mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2024-11-21 01:16:33 +08:00
89 lines
2.3 KiB
Python
89 lines
2.3 KiB
Python
import logging
|
|
|
|
from colorama import Fore, Style
|
|
|
|
class BaseStatsLogger(object):
|
|
"""Base class for logging realtime events"""
|
|
|
|
def __init__(self, prefix="myapp"):
|
|
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="localhost", port=8125, prefix="myapp", statsd_client=None
|
|
):
|
|
"""
|
|
Initializes from either params or a supplied, pre-constructed statsd client.
|
|
|
|
If statsd_client argument is given, all other arguments are ignored and the
|
|
supplied client will be used to emit metrics.
|
|
"""
|
|
if statsd_client:
|
|
self.client = statsd_client
|
|
else:
|
|
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
|