Observability, tracing, and telemetry framework for Hush
Project description
hush-telemetry
External tracing backends for Hush workflows — Langfuse, OpenTelemetry, and local visualization.
Installation
pip install hush-telemetry # Langfuse + HushEyes (default)
pip install "hush-telemetry[otel]" # + OpenTelemetry
pip install "hush-telemetry[all]" # Everything
Quick Start
from hush.core import Hush, GraphOp, START, END
from hush.telemetry import LangfuseTracer
with GraphOp(name="demo") as graph:
# ... define ops
pass
tracer = LangfuseTracer(resource="langfuse:default", tags=["prod"])
engine = Hush(graph, tracer=tracer)
result = await engine.run(inputs={...})
# Traces automatically sent to Langfuse
Supported Backends
| Backend | Tracer Class | Description |
|---|---|---|
| HushEyes | HushEyesTracer |
Local trace viewer (SQLite, http://localhost:8420) |
| Langfuse | LangfuseTracer |
LLM observability platform (custom HTTP, no SDK) |
| OpenTelemetry | OTELTracer |
Vendor-neutral (Jaeger, Zipkin, Tempo, etc.) |
Usage Patterns
from hush.telemetry import HushEyesTracer, LangfuseTracer, LangfuseConfig
# Local visualization
tracer = HushEyesTracer(tags=["dev"])
# Langfuse with ResourceHub
tracer = LangfuseTracer(resource="langfuse:default")
# Langfuse with direct config
tracer = LangfuseTracer(config=LangfuseConfig.from_env())
# Multiple tracers at once
engine = Hush(graph, tracer=[HushEyesTracer(), LangfuseTracer(resource="langfuse:default")])
Configuration
# resources.yaml
tracer:
langfuse:
public_key: ${LANGFUSE_PUBLIC_KEY}
secret_key: ${LANGFUSE_SECRET_KEY}
host: https://cloud.langfuse.com
Features
- Hierarchical tracing — pre-computed TraceNode tree with parent-child relationships
- Token/cost tracking — automatic for LLM ops
- Stream sampling — cap trace items per generator (default: 100)
- Background flushing — non-blocking, ThreadPoolExecutor-based
- No SDK dependency — Langfuse uses custom HTTP client (pure REST API)
Related Packages
| Package | Description |
|---|---|
| hush-icore | Core engine with built-in LocalTracer |
| hush-eyes | Standalone trace visualization server |
License
Apache 2.0
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
hush_telemetry-0.1.17.tar.gz
(21.6 kB
view details)
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 hush_telemetry-0.1.17.tar.gz.
File metadata
- Download URL: hush_telemetry-0.1.17.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fc37bfc4c361be951a419fafa42316f289aa6ed872d97be00cb57fad3f55ea8
|
|
| MD5 |
0c06b77e12e686690967cd099b87207a
|
|
| BLAKE2b-256 |
4d101b614a499a544ae1f7c023525d0613119e7a5954b07e04bd2811d500a16e
|
File details
Details for the file hush_telemetry-0.1.17-py3-none-any.whl.
File metadata
- Download URL: hush_telemetry-0.1.17-py3-none-any.whl
- Upload date:
- Size: 29.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
782aa79477ad1e3bfe7df63d416b171195c64de67742c489b05d126620fd4f3f
|
|
| MD5 |
6437afc5eeca25219358ed9fae4916f4
|
|
| BLAKE2b-256 |
e54335f7ec0e9522867c30da7174d098fd8937b6934e1fa070e76d699258c6d3
|