Metadata-Version: 2.1
Name: opencensus-ext-gevent
Version: 0.1.0
Summary: OpenCensus gevent compatibility helper
Home-page: https://github.com/census-instrumentation/opencensus-python/tree/master/contrib/opencensus-ext-gevent
Author: OpenCensus Authors
Author-email: census-developers@googlegroups.com
License: Apache-2.0
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: opencensus (<1.0.0,>=0.6.0)
Requires-Dist: gevent (>=1.3)

OpenCensus gevent helper
============================================================================

|pypi|

.. |pypi| image:: https://badge.fury.io/py/opencensus-ext-gevent.svg
   :target: https://pypi.org/project/opencensus-ext-gevent/

Installation
------------

::

    pip install opencensus-ext-gevent

Usage
-----

As gevent is to date `incompatible <https://github.com/gevent/gevent/issues/1407>`_ with
the new context variables the **OpenCensus gevent helper** configures OpenCensus to use
a compatible thread based runtime context implementation.

No action apart from installing the package is needed as it listens to events
`emitted by gevent  <http://www.gevent.org/api/gevent.monkey.html#plugins>`_ once
patching via ``patch_all`` is complete.


Warning
-------

OpenCensus itself is completely compatible with gevent. Be aware though that not all
available OpenCensus integrations are compatible.

You should  check this on a case by case basis.


References
----------

* `OpenCensus Project <https://opencensus.io/>`_
* `gevent <https://www.gevent.org/>`_


