Uptrace client for Python
Project description
Uptrace for Python
Installation
Introduction
uptrace-python is an OpenTelemery distribution configured to export traces to Uptrace.
Quickstart
Install uptrace-python:
pip install uptrace
Run the basic example below using the DSN from the Uptrace project settings page.
#!/usr/bin/env python3
import uptrace
from opentelemetry import trace
# Set dsn or UPTRACE_DSN env var.
uptrace.configure_opentelemetry(
dsn="", service_name="myservice", service_version="1.0.0"
)
tracer = trace.get_tracer("app_or_package_name", "1.0.0")
with tracer.start_as_current_span("main") as span:
with tracer.start_as_current_span("child1") as span:
span.set_attribute("key1", "value1")
span.record_exception(ValueError("error1"))
with tracer.start_as_current_span("child2") as span:
span.set_attribute("key2", "value2")
span.set_attribute("key3", 123.456)
print("trace:", uptrace.trace_url(span))
# Send buffered spans.
trace.get_tracer_provider().shutdown()
For more details, please see documentation and examples.
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
uptrace-1.4.1.tar.gz
(5.7 kB
view details)
Built Distribution
File details
Details for the file uptrace-1.4.1.tar.gz
.
File metadata
- Download URL: uptrace-1.4.1.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41a8e3821071dd3da9a6c16b059b8625cecafc2ba4ebbef3f7d3dbdac33f6a26 |
|
MD5 | 5409c57f6c0743c7259c7bf8db878172 |
|
BLAKE2b-256 | 47587dbe04404c2ea8291952ff77d236dab693091cf2d1120acd1e13570fd6ff |
File details
Details for the file uptrace-1.4.1-py3-none-any.whl
.
File metadata
- Download URL: uptrace-1.4.1-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33e462e0302e306efa95b0e81bb41bac51b3b9ae6c9ade1b7f2521fbdf4545ab |
|
MD5 | b42daf9ee31f3c7761db6592d159ba0b |
|
BLAKE2b-256 | 30db02fddadd7af1176185585de17dc3c87af04ba0ffe241af2136b2e8d85e07 |