OpenCensus Requests Integration
Project description
OpenCensus can trace HTTP requests made with the requests package. The request URL, method, and status will be collected.
You can enable requests integration by specifying 'requests' to trace_integrations.
It’s possible to configure a list of URL you don’t want traced. By default the request to exporter won’t be traced. It’s configurable by giving an array of hostname/port to the attribute blacklist_hostnames in OpenCensus context’s attributes:
Only the hostname must be specified if only the hostname is specified in the URL request.
Installation
pip install opencensus-ext-requests
Usage
import requests
from opencensus.trace import config_integration
from opencensus.trace.tracer import Tracer
if __name__ == '__main__':
config_integration.trace_integrations(['requests'])
tracer = Tracer()
with tracer.span(name='parent'):
response = requests.get(url='https://www.wikipedia.org/wiki/Rabbit')
References
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for opencensus_ext_requests-0.7.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61690fb61d637b9d1269a0717d5f6f1246d2b28183926c22dc17c87c1f287538 |
|
MD5 | f0530b30e69add7f040c1b0912f94264 |
|
BLAKE2b-256 | ecd77260b97e43c6ac01550ae73f3c2561f76c0c16b354835026b4c7cee4cd09 |