sprockets.mixins.metrics/docs/examples.rst

19 lines
567 B
ReStructuredText
Raw Permalink Normal View History

2016-01-19 12:50:03 +00:00
Examples
========
Sending metrics to StatsD
-------------------------
This simple application emits metrics to port 8125 on localhost. The
mix-in is configured by passing a ``sprockets.mixins.metrics.statsd``
key into the application settings as shown below.
.. literalinclude:: ../examples/statsd.py
:pyobject: make_application
The request handler is simple. In fact, there is nothing of interest
there except that it uses :class:`~sprockets.mixins.metrics.StatsdMixin`
as a base class.
.. literalinclude:: ../examples/statsd.py
:pyobject: SimpleHandler