otelme pronounced "Oh, tell me"
Project description
otelme - pronounced "Oh, tell me"
A low-friction OpenTelemetry wrapper for Python apps. It comes with sugar over basic spanning and the tell magic receiver.
Usage
Use context managers or decorators to automatically create scoped spans:
with telme.tell('update_user_record'):
telme.tell('a') | 'b'
...
@telme.tell
def myfunc():
...
@telme.tell('different_name')
def myfunc():
...
Save the user friend count before adding to it and saving it to a variable
new_count = telme.tell('friends') @ len(user.friends) + 1
Save the result of count + 1 as the attribute 'newcount' on the current span
telme.tell('newcount') + count
new_count = telme.tell('newcount') + 1
Use a splat (*) operator to add a whole dict a JSON attribute on the current trace
telme.tell('explosion') * {'bang': 'loud', 'flame': 'big'}
# adds span attr: {'explosion': '{"bang": "loud", "flame": "big"}'
Use double-splat (**) operator to hoist a dict by its keys on the current trace
telme.tell('explosion') ** {'bang': 'loud', 'flame': 'big'}
# adds span attrs: {'explosion.bang': 'loud', 'explosion.flame': 'big'}
Use notify with the splat (*) operator to add a dict as an event on the current trace
telme.notify('explosion') ** {'bang': 'loud', 'flame': 'big'}
# adds new event `explosion` with attrs: {'bang': 'loud', 'flame': 'big'}
Inspired by pipe, q, and the rollup_field support in Honeycomb's beeline.
Contributing
All help is welcome, especially help understanding how otelme is used and what other use cases we can help with. Not all pull requests will be accepted, before opening a PR with a feature please open an issue to discuss it to avoid doing work that can't be upstreamed.
License
otelme is available under the MIT license, see LICENSE for details.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file otelme-0.0.4.tar.gz.
File metadata
- Download URL: otelme-0.0.4.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.26.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f5e372d5cce67d563a71e5223f58a0df43fd835e7a9a9f9d01c64163b12d4f6
|
|
| MD5 |
ef37533b7712b501fa6373aa9e6c3f8c
|
|
| BLAKE2b-256 |
220e1c4bce565d331390ed1520e4831af2157894f812ff5321389c258be497fc
|
File details
Details for the file otelme-0.0.4-py3-none-any.whl.
File metadata
- Download URL: otelme-0.0.4-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.26.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d58c7169d7ae8516337d28290b9b7d1b32e0fcc9cc77443bac208116d172ea55
|
|
| MD5 |
8aaf568b818c388de3739a1b0d4d4568
|
|
| BLAKE2b-256 |
303eb06abea81e507647e09cff64e624c3b5b6519f9525d9fdbcecb66fd8e3b3
|