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()
Links
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.9.1.tar.gz
(6.3 kB
view details)
Built Distribution
File details
Details for the file uptrace-1.9.1.tar.gz
.
File metadata
- Download URL: uptrace-1.9.1.tar.gz
- Upload date:
- Size: 6.3 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 | d5ffe9948b09276d71023f7ab619c5ea6add79cc545c6d21743d315a761ee05b |
|
MD5 | 9660e75487965cab98396b28d0cdbb03 |
|
BLAKE2b-256 | ee60f823a2780543e27ba6d84f37dade514ec486fe3eb39ae626a435fde8a11b |
File details
Details for the file uptrace-1.9.1-py3-none-any.whl
.
File metadata
- Download URL: uptrace-1.9.1-py3-none-any.whl
- Upload date:
- Size: 7.0 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 | 5c451ff8d22972cc1d83acff21274faeab58f55a9224770ae265194d6f3e7810 |
|
MD5 | 5398c8282a3ce303bb29646b0a06514b |
|
BLAKE2b-256 | 4d127b5810301a7deea93aa6b6288bea67d4aea65e58a62df69122d8f3c1a7f3 |