sprockets.mixins.metrics/docs/examples.rst
2016-01-19 08:34:11 -05:00

18 lines
567 B
ReStructuredText

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