Metadata-Version: 1.1
Name: pyramid_prometheus
Version: 0.5
Summary: Pyramid Integration for Prometheus
==================================

A tween which exposes basic Pyramid statistics to Prometheus.

Setup
-----

You can either include the exporter in your project's ``__init__.py``::

    config = Configurator(.....)
    config.include('pyramid_prometheus')

Or you can use the pyramid.includes configuration value in your ``.ini``
file::

    [app:myapp]
    pyramid.includes = pyramid_exclog

Settings
--------

:``prometheus.port``:
    port number to expose metrics on. If not set, metrics
    are not exposed

:``prometheus.slow_request_threshold``:
    Number of seconds as a float.
    If a request takes longer than this, it is logged in the metric
    ``pyramid_slow_requests``

Home-page: https://github.com/jinty/pyramid_prometheus
Author: Brian Sutherland
Author-email: brian@vanguardistas.net
License: MIT
Description: UNKNOWN
Keywords: pyramid tween statistics metric prometheus
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: License :: OSI Approved :: MIT License
