Installation¶
pip install tally
The tally Server¶
Tally can be easily added to your existing Django site:
Add
tallyto yourINSTALLED_APPSInclude
tally.urlsin your URLconf somewhere, for example:url(r'^_tally/', include('tally.urls'))
Run
manage.py syncdbto create tally’s Archive tableCreate one or more Archives in the Django admin (or via the API, coming soon)
Run
manage.py tallyserverto start listening for metrics
Note
Unless you want your metrics to be public, you should take care to protect the URLs using HTTP basic authentication, or some other method. You may also consider running a separate tally instance inside your network that your production site sends metrics to.