2021-03-09 20:06:23 +00:00
|
|
|
import contextlib
|
|
|
|
import os
|
2021-03-21 21:45:23 +00:00
|
|
|
import socket
|
2021-03-09 20:06:23 +00:00
|
|
|
import time
|
|
|
|
|
|
|
|
from tornado import web
|
|
|
|
|
|
|
|
from sprockets_statsd import statsd
|
|
|
|
|
|
|
|
|
|
|
|
class Application(web.Application):
|
|
|
|
"""Mix this into your application to add a statsd connection.
|
|
|
|
|
2021-03-23 11:43:20 +00:00
|
|
|
.. attribute:: statsd_connector
|
|
|
|
:type: sprockets_statsd.statsd.Connector
|
|
|
|
|
|
|
|
Connection to the StatsD server that is set between calls
|
|
|
|
to :meth:`.start_statsd` and :meth:`.stop_statsd`.
|
|
|
|
|
2021-03-09 20:06:23 +00:00
|
|
|
This mix-in is configured by the ``statsd`` settings key. The
|
2021-03-23 11:08:34 +00:00
|
|
|
value is a dictionary with the following keys.
|
2021-03-09 20:06:23 +00:00
|
|
|
|
2021-03-11 12:31:24 +00:00
|
|
|
+-------------------+---------------------------------------------+
|
|
|
|
| host | the statsd host to send metrics to |
|
|
|
|
+-------------------+---------------------------------------------+
|
2021-03-23 11:08:34 +00:00
|
|
|
| port | port number that statsd is listening on |
|
2021-03-11 12:31:24 +00:00
|
|
|
+-------------------+---------------------------------------------+
|
|
|
|
| prefix | segment to prefix to metrics. |
|
|
|
|
+-------------------+---------------------------------------------+
|
2021-03-21 21:45:23 +00:00
|
|
|
| protocol | "tcp" or "udp" |
|
|
|
|
+-------------------+---------------------------------------------+
|
2021-03-11 12:31:24 +00:00
|
|
|
| reconnect_timeout | number of seconds to sleep after a statsd |
|
|
|
|
| | connection attempt fails |
|
|
|
|
+-------------------+---------------------------------------------+
|
|
|
|
| wait_timeout | number of seconds to wait for a metric to |
|
|
|
|
| | arrive on the queue before verifying the |
|
|
|
|
| | connection |
|
|
|
|
+-------------------+---------------------------------------------+
|
|
|
|
|
2021-03-23 11:08:34 +00:00
|
|
|
**host** defaults to the :envvar:`STATSD_HOST` environment variable.
|
|
|
|
If this value is not set, then the statsd connector *WILL NOT* be
|
|
|
|
enabled.
|
|
|
|
|
|
|
|
**port** defaults to the :envvar:`STATSD_PORT` environment variable
|
|
|
|
with a back up default of 8125 if the environment variable is not
|
|
|
|
set.
|
|
|
|
|
|
|
|
**prefix** is prefixed to all metric paths. This provides a
|
|
|
|
namespace for metrics so that each applications metrics are maintained
|
|
|
|
in separate buckets.
|
|
|
|
|
|
|
|
If the *service* and *environment* keys are set in ``settings``,
|
|
|
|
then the default prefix is ``applications.<service>.<environment>``.
|
|
|
|
This is a convenient way to maintain consistent metric paths when
|
|
|
|
you are managing a larger number of services.
|
2021-03-09 20:06:23 +00:00
|
|
|
|
2021-03-21 21:45:23 +00:00
|
|
|
**protocol** defaults to the :envvar:`STATSD_PROTOCOL` environment
|
|
|
|
variable with a back default of "tcp" if the environment variable
|
|
|
|
is not set.
|
|
|
|
|
2021-03-23 11:08:34 +00:00
|
|
|
**reconnect_timeout** defaults to 1.0 seconds which limits the
|
2021-03-11 12:31:24 +00:00
|
|
|
aggressiveness of creating new TCP connections.
|
|
|
|
|
2021-03-23 11:08:34 +00:00
|
|
|
**wait_timeout** defaults to 0.1 seconds which ensures that the
|
2021-03-11 12:31:24 +00:00
|
|
|
processor quickly responds to connection faults.
|
|
|
|
|
2021-03-09 20:06:23 +00:00
|
|
|
"""
|
|
|
|
def __init__(self, *args, **settings):
|
|
|
|
statsd_settings = settings.setdefault('statsd', {})
|
|
|
|
statsd_settings.setdefault('host', os.environ.get('STATSD_HOST'))
|
|
|
|
statsd_settings.setdefault('port',
|
|
|
|
os.environ.get('STATSD_PORT', '8125'))
|
2021-03-21 21:45:23 +00:00
|
|
|
statsd_settings.setdefault('protocol',
|
|
|
|
os.environ.get('STATSD_PROTOCOL', 'tcp'))
|
2021-03-09 20:06:23 +00:00
|
|
|
|
2021-03-23 11:08:34 +00:00
|
|
|
try:
|
|
|
|
prefix = '.'.join([
|
|
|
|
'applications',
|
|
|
|
settings['service'],
|
|
|
|
settings['environment'],
|
|
|
|
])
|
|
|
|
except KeyError:
|
|
|
|
prefix = None
|
|
|
|
statsd_settings.setdefault('prefix', prefix)
|
2021-03-09 20:06:23 +00:00
|
|
|
|
|
|
|
super().__init__(*args, **settings)
|
|
|
|
|
|
|
|
self.settings['statsd']['port'] = int(self.settings['statsd']['port'])
|
2021-03-23 11:43:20 +00:00
|
|
|
self.statsd_connector = None
|
2021-03-09 20:06:23 +00:00
|
|
|
|
|
|
|
async def start_statsd(self):
|
|
|
|
"""Start the connector during startup.
|
|
|
|
|
|
|
|
Call this method during application startup to enable the statsd
|
|
|
|
connection. A new :class:`~sprockets_statsd.statsd.Connector`
|
|
|
|
instance will be created and started. This method does not return
|
|
|
|
until the connector is running.
|
|
|
|
|
|
|
|
"""
|
2021-03-23 11:43:20 +00:00
|
|
|
if self.statsd_connector is None:
|
|
|
|
statsd_settings = self.settings['statsd']
|
2021-03-11 12:31:24 +00:00
|
|
|
kwargs = {
|
|
|
|
'host': statsd_settings['host'],
|
|
|
|
'port': statsd_settings['port'],
|
|
|
|
}
|
|
|
|
if 'reconnect_sleep' in statsd_settings:
|
|
|
|
kwargs['reconnect_sleep'] = statsd_settings['reconnect_sleep']
|
|
|
|
if 'wait_timeout' in statsd_settings:
|
|
|
|
kwargs['wait_timeout'] = statsd_settings['wait_timeout']
|
2021-03-21 21:45:23 +00:00
|
|
|
if statsd_settings['protocol'] == 'tcp':
|
|
|
|
kwargs['ip_protocol'] = socket.IPPROTO_TCP
|
|
|
|
elif statsd_settings['protocol'] == 'udp':
|
|
|
|
kwargs['ip_protocol'] = socket.IPPROTO_UDP
|
|
|
|
else:
|
|
|
|
raise RuntimeError(
|
|
|
|
f'statsd configuration error:'
|
|
|
|
f' {statsd_settings["protocol"]} is not a valid'
|
|
|
|
f' protocol')
|
2021-03-23 11:43:20 +00:00
|
|
|
|
|
|
|
self.statsd_connector = statsd.Connector(**kwargs)
|
|
|
|
await self.statsd_connector.start()
|
2021-03-09 20:06:23 +00:00
|
|
|
|
|
|
|
async def stop_statsd(self):
|
|
|
|
"""Stop the connector during shutdown.
|
|
|
|
|
|
|
|
If the connector was started, then this method will gracefully
|
|
|
|
terminate it. The method does not return until after the
|
|
|
|
connector is stopped.
|
|
|
|
|
|
|
|
"""
|
2021-03-23 11:43:20 +00:00
|
|
|
if self.statsd_connector is not None:
|
|
|
|
await self.statsd_connector.stop()
|
|
|
|
self.statsd_connector = None
|
2021-03-09 20:06:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
class RequestHandler(web.RequestHandler):
|
|
|
|
"""Mix this into your handler to send metrics to a statsd server."""
|
2021-03-23 11:43:20 +00:00
|
|
|
statsd_connector: statsd.Connector
|
2021-03-09 20:06:23 +00:00
|
|
|
|
|
|
|
def initialize(self, **kwargs):
|
|
|
|
super().initialize(**kwargs)
|
2021-03-23 11:43:20 +00:00
|
|
|
self.application: Application
|
|
|
|
self.statsd_connector = self.application.statsd_connector
|
2021-03-09 20:06:23 +00:00
|
|
|
|
|
|
|
def __build_path(self, *path):
|
|
|
|
full_path = '.'.join(str(c) for c in path)
|
|
|
|
if self.settings.get('statsd', {}).get('prefix', ''):
|
|
|
|
return f'{self.settings["statsd"]["prefix"]}.{full_path}'
|
|
|
|
return full_path
|
|
|
|
|
|
|
|
def record_timing(self, secs: float, *path):
|
|
|
|
"""Record the duration.
|
|
|
|
|
|
|
|
:param secs: number of seconds to record
|
|
|
|
:param path: path to record the duration under
|
|
|
|
|
|
|
|
"""
|
2021-03-23 11:43:20 +00:00
|
|
|
if self.statsd_connector is not None:
|
|
|
|
self.statsd_connector.inject_metric(
|
|
|
|
self.__build_path('timers', *path), secs * 1000.0, 'ms')
|
2021-03-09 20:06:23 +00:00
|
|
|
|
|
|
|
def increase_counter(self, *path, amount: int = 1):
|
|
|
|
"""Adjust a counter.
|
|
|
|
|
|
|
|
:param path: path of the counter to adjust
|
|
|
|
:param amount: amount to adjust the counter by. Defaults to
|
|
|
|
1 and can be negative
|
|
|
|
|
|
|
|
"""
|
2021-03-23 11:43:20 +00:00
|
|
|
if self.statsd_connector is not None:
|
|
|
|
self.statsd_connector.inject_metric(
|
2021-03-09 20:06:23 +00:00
|
|
|
self.__build_path('counters', *path), amount, 'c')
|
|
|
|
|
|
|
|
@contextlib.contextmanager
|
|
|
|
def execution_timer(self, *path):
|
|
|
|
"""Record the execution duration of a block of code.
|
|
|
|
|
|
|
|
:param path: path to record the duration as
|
|
|
|
|
|
|
|
"""
|
|
|
|
start = time.time()
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
self.record_timing(time.time() - start, *path)
|
|
|
|
|
|
|
|
def on_finish(self):
|
|
|
|
"""Extended to record the request time as a duration.
|
|
|
|
|
|
|
|
This method extends :meth:`tornado.web.RequestHandler.on_finish`
|
|
|
|
to record ``self.request.request_time`` as a timing metric.
|
|
|
|
|
|
|
|
"""
|
|
|
|
super().on_finish()
|
|
|
|
self.record_timing(self.request.request_time(),
|
|
|
|
self.__class__.__name__, self.request.method,
|
|
|
|
self.get_status())
|