OpenCensus Stackdriver Trace Exporter
Project description
Installation
pip install opencensus-ext-stackdriver
Usage
Trace
This example shows how to report the traces to Stackdriver Trace:
from opencensus.ext.stackdriver import trace_exporter as stackdriver_exporter
from opencensus.trace import tracer as tracer_module
exporter = stackdriver_exporter.StackdriverExporter(
project_id='your_cloud_project')
tracer = tracer_module.Tracer(exporter=exporter)
pip install google-cloud-trace pipenv install google-cloud-trace
By default, traces are exported synchronously, which introduces latency during your code’s execution. To avoid blocking code execution, you can initialize your exporter to use a background thread.
This example shows how to configure OpenCensus to use a background thread:
from opencensus.common.transports.async_ import AsyncTransport
from opencensus.ext.stackdriver import trace_exporter as stackdriver_exporter
from opencensus.trace import tracer as tracer_module
exporter = stackdriver_exporter.StackdriverExporter(
project_id='your_cloud_project', transport=AsyncTransport)
tracer = tracer_module.Tracer(exporter=exporter)
Stats
The OpenCensus Stackdriver Stats Exporter allows users to export metrics to Stackdriver Monitoring. The API of this project is still evolving. The use of vendoring or a dependency management tool is recommended.
Stackdriver Exporter Usage
Stackdriver Import
from opencensus.ext.stackdriver import stats_exporter as stackdriver from opencensus.stats import stats as stats_module
Stackdriver Prerequisites
OpenCensus Python libraries require Python 2.7 or later.
Google Cloud Platform account and project.
Google Stackdriver Monitoring enabled on your project (Need help? Click here).
Register the Stackdriver exporter
stats = stats_module.stats view_manager = stats.view_manager exporter = stackdriver.new_stats_exporter(stackdriver.Options(project_id="<id_value>")) view_manager.register_exporter(exporter) ...
Stackdriver Code Reference
In the examples folder, you can find all the necessary steps to get the exporter, register a view, put tags on the measure, and see the values against the Stackdriver monitoring tool once you have defined the project_id.
For further details for the Stackdriver implementation, see the folder stackdriver/stats_exporter/.
Path & File |
Short Description |
---|---|
contrib/opencensus-ext-stackdriver/examples/ |
End to end example |
contrib/opencensus-ext-stackdriver/opencensus/ext/stackdriver/stats_exporter/ |
Stats implementation for Stackdriver |
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 Distribution
Built Distribution
Hashes for opencensus-ext-stackdriver-0.7.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5560a0079adb18fd84af084a39d4d512817d40393fbc8598cc09ef9c060a823f |
|
MD5 | ce004f57ab95a7f83f3475753b9dd58f |
|
BLAKE2b-256 | 472ceb93b94c3f2c2b3a144a20b2dedaa9a003723a549335c6dc6537877465fb |
Hashes for opencensus_ext_stackdriver-0.7.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e28673f48ec5083b70c1ff36b0ff00eff1108a9505e19cf6f085b1f1791a0d6d |
|
MD5 | 905d7bb1d6ac7f4deda464d58263276a |
|
BLAKE2b-256 | c3141dea0d7110e5cb349fb92a88b4b0148ab9f96f8150b913cb183fc0f8f1e7 |