Skip to main content

Observability, tracing, and telemetry framework for Hush

Project description

hush-telemetry

External tracing backends for Hush workflows — Langfuse, OpenTelemetry, and local visualization.

PyPI Python

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


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.16.tar.gz (21.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hush_telemetry-0.1.16-py3-none-any.whl (29.5 kB view details)

Uploaded Python 3

File details

Details for the file hush_telemetry-0.1.16.tar.gz.

File metadata

  • Download URL: hush_telemetry-0.1.16.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

Hashes for hush_telemetry-0.1.16.tar.gz
Algorithm Hash digest
SHA256 e68c63f44e4b9c0597c230b4e27338ad364c6d9e969ae7325a2776ee8e26c432
MD5 9e5a271473a6b881133e155e2d9f6915
BLAKE2b-256 98b4c18839b90b3aa19be5fa63572a53fd1c7e130b69599ecb72fb4a340f0d7f

See more details on using hashes here.

File details

Details for the file hush_telemetry-0.1.16-py3-none-any.whl.

File metadata

File hashes

Hashes for hush_telemetry-0.1.16-py3-none-any.whl
Algorithm Hash digest
SHA256 916667a9ab2481f2d2d341220a2a82f26f4be5b08f39375287020797824b23e7
MD5 afb82bf6f8eac8f120e3abaf96ee91fb
BLAKE2b-256 b69e2bb5513599e6767dbb227bed56b2553fb6bf563b44230ac44ff872274f14

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page