Metadata-Version: 2.0 Name: Flask-Stats Version: 1.0.1 Summary: A flask plugin to keep stats about your application Home-page: https://github.com/solarnz/Flask-Stats Author: Chris Trotman Author-email: chris@trotman.io License: BSD Keywords: Flask-Stats Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Topic :: Software Development :: Libraries :: Python Modules Requires-Dist: Flask Requires-Dist: statsd =========== Flask-Stats =========== This flask extension automatically provides paging timing and http status code statistics to statsd. It will send page timings to `..`, and status codes to `...http_XXX`, where XXX is the status code, i.e 403. Installation ------------ Install by installing it from the Python Package Index. .. code-block:: console $ pip install Flask-Stats Configuration ------------- Flask-Stats uses the following configuration values. =============================== ======================================================== `STATS_HOSTNAME` Specifies the host to send statsd values to. Defaults to localhost. `STATS_PORT` Specified the port to send statsd values to. Defaults to 8125. `STATS_BASE_KEY` The base key to send the stats to. Defaults to the application name. =============================== ======================================================== Changelog --------- 1.0.0 ~~~~~ - No longer reports timing values for endpoints that don't exist. Todo ---- More functionality? What Would you like?