tai42-monitoring-langfuse
A Langfuse Monitoring backend for the TAI ecosystem. It implements both faces
of the tai42_contract.monitoring contract: the writer (spans, events,
LangChain/LangGraph callback handlers, context propagation, per-project
scoping) and the reader (metrics totals, the runtime span window, and
complete-trace reads) over a Langfuse server — cloud or self-hosted.
The TAI ecosystem
TAI is an open-source runtime for MCP tools, agents, and workflows. A
Monitoring backend is the runtime's observability provider: the framework
emits tool/hook/agent spans through the registered writer, and the
/api/observability/* routes answer dashboards from the same backend's reader.
This package is one such provider (Langfuse); any package can back the same
contract, so this repo is this provider's own full doc home, and the
documentation site covers the platform-level story:
- Observability guide: https://tai42.ai/guides/observe
- Author a monitoring backend (author guide): https://tai42.ai/guides/authors/monitoring-backend
- Ecosystem catalog: https://tai42.ai/reference/catalog
Its only tai-* dependencies are tai42-contract (the Monitoring /
MonitoringWriter / MonitoringReader protocols, the neutral data models, and
the tai42_app handle) and tai42-kit (TaiBaseSettings and the settings cache).
Beyond those it depends on the langfuse SDK, langchain, the OpenTelemetry
API, and pydantic / pydantic-settings.
The current release line tracks the 7.x contract (tai42-contract>=7,<8).
Install
Requires Python 3.13+. Install from PyPI into the environment that runs the server:
uv add tai42-monitoring-langfuse
Or from source — clone this repo and add it as an editable dependency; the
tai42-* dependencies resolve in-tree from the workspace.
git clone https://github.com/tai42ai/tai42 # next to your app checkout
cd /path/to/your/app
uv add --editable ../tai42/plugins/monitoring-langfuse
Discovery
The runtime discovers this backend through the manifest's monitoring_module
field: it imports every module under the named package, and the package's
register module fires the @tai42_app.monitoring.register_monitoring decorator
as a side-effect (there is no entry-point). The decorated zero-arg builder
constructs the backend from the LANGFUSE_* environment and installs it as the
process monitoring backend:
monitoring_module: tai42_monitoring_langfuse
Selecting the module but leaving the credentials unset raises at startup —
a selected backend that cannot build is a loud failure, not a silent downgrade.
To run without monitoring, omit monitoring_module entirely (the runtime falls
back to its built-in no-op). A plain import tai42_monitoring_langfuse (library
use) does not register anything.
Configuration
Settings are read from the LANGFUSE_ environment group (see
LangfuseSettings):
| Env var | Default | Purpose |
|---|---|---|
LANGFUSE_PUBLIC_KEY |
— | Langfuse project public key (required) |
LANGFUSE_SECRET_KEY |
— | Langfuse project secret key (required) |
LANGFUSE_HOST |
— | Langfuse server URL (required) |
LANGFUSE_TIMEOUT_SECONDS |
30 |
SDK client timeout, also passed per read request |
LANGFUSE_TRACING_ENVIRONMENT |
tai |
The source marker: stamps every write as the Langfuse environment and scopes every read to it |
The source marker lets several deployments share one Langfuse project while
each reads back only its own data. get_trace is the one unscoped read — a
trace id is globally unique.
Multi-project scoping
One registered backend can hold several Langfuse projects.
Monitoring.add_project(ProjectConfig(...)) registers an extra project, and
writer.scope(public_key) binds it as the active project for a block — every
emit and read inside the block targets it. Scoping to an unregistered key
raises (a silently mis-scoped block could leak traces across projects).
writer.disable() suppresses all emission within a block.
Run attribution & data retention (operators read this)
The platform attributes a run's trace with generic identity dimensions at its
shared chokepoints: a user (user_id), a session (session_id), route
tags, and free-form metadata (plus a preset's preset:/preset-v: tags and
a root version when a registered preset is dispatched). This writer forwards
them to Langfuse's native user_id / session_id / version / tags trace
dimensions via propagate_attributes, so a run is filterable and groupable in
Langfuse by exactly those dimensions — including from the /api/observability/runs
door's user / session / meta.<key> query params.
Because that identity lands in your Langfuse project, it is your data to govern. Two operator responsibilities:
- Set a deliberate retention policy. Langfuse retains traces until you delete them; decide a retention window that matches your privacy/compliance posture and configure it in Langfuse (project data-retention settings or a scheduled deletion job). The platform sets none on your behalf — a trace lives as long as your Langfuse project keeps it.
- Know what
user_idcarries. It is person-id-first: a conversation with a resolved (linked or provisional) person is attributed by that person's stableperson_id. When no person exists (the plain, non-multichannel path) it falls back to the raw{channel}:{client_address}the door saw — which, on a channel door, is an end-user address (a phone number, a visitor id, an email) — or, on the API door where no channel exists, the bareclient_addressalone. Treat those trace attributes as personal data. - Erasure story. Langfuse deletes by
user_id: to honour an erasure request, delete that subject's traces in Langfuse keyed on theuser_idabove (theperson_id; the raw{channel}:{address}for an unlinked channel subject; or the bare address for an unlinked API-door subject). Keepinguser_idperson-id-first keeps a linked subject's whole cross-channel history under one deletable key.
Behavior notes
- Writer fail-safety (contract invariant): the emit methods and the
Spanhandle catch + log, never raising into application code.record_spanwithout atrace_idis the one raising precondition (a caller bug). The lifecycle/propagation methods (flush,shutdown,inject_context,get_monitoring_callbacks,scope,disable) propagate errors loudly. - Fork safety:
writer.shutdown()fully evicts every cached SDK client (not just a flush), so a forked child rebuilds a clean client on first use. - Reader:
asyncper the contract; the synchronous Langfuse API client is dispatched off the event loop.list_tracesreturns row SUMMARIES, never trace bodies. For the native (timestamp) sort a page costs one trace-list call for the row attributes and previews, one metrics query for the page's token totals, and one bounded error-observations query for the page's error status — no per-trace body fetch. A metric sort (cost/latency/tokens) adds one ranking metrics query and a bounded trace-list walk in place of that single list call.get_traceis the only body door; it returns the trace or raisesTraceNotFoundError, and a transient failure (e.g. a timeout) propagates as-is — it is never mapped to "not found". - Metric sorts:
list_tracesordered bytotal_cost/latency/total_tokensranks globally through the Langfuse metrics API (trace.list cannot sort on aggregates) and requiresfrom_timestamp+limit; unsupported filter clauses on that path raiseMonitoringReadNotSupportedErrornaming the offending clauses. - Private SDK surface: the few capabilities the SDK has no public API for
(project-scope contextvar, full client eviction, explicit-time span emission,
trace attributes from a span handle) are concentrated in
tai42_monitoring_langfuse.sdk_internals, documented as version-fragile against the pinnedlangfuse~=4.0.6.
Development
uv venv --python 3.13
uv pip install --no-sources --group dev --editable .
uv run --no-sync pytest --cov --cov-report=term-missing
uv run --no-sync ruff check .
uv run --no-sync ruff format --check .
uv run --no-sync pyright
Live integration tests (pytest -m integration) hit a real Langfuse server;
they read LANGFUSE_PUBLIC_KEY / LANGFUSE_SECRET_KEY / LANGFUSE_HOST from
the environment and skip cleanly when unset.
License
Apache-2.0. See LICENSE and NOTICE.
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 tai42_monitoring_langfuse-2.1.2.tar.gz.
File metadata
- Download URL: tai42_monitoring_langfuse-2.1.2.tar.gz
- Upload date:
- Size: 57.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6898be9d06b35cbac05460c471fa19771f7f45439ebfac7c9e29d22189d3a47
|
|
| MD5 |
5dbb79acbb9838c98edc826008a485d1
|
|
| BLAKE2b-256 |
597dabcf613d640745c2b3a90d66ff0fafdcdd776826402c3bab466567371ef7
|
File details
Details for the file tai42_monitoring_langfuse-2.1.2-py3-none-any.whl.
File metadata
- Download URL: tai42_monitoring_langfuse-2.1.2-py3-none-any.whl
- Upload date:
- Size: 35.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9e0eaaf5d1542e9b2474a49faa8749892aa71b069cc43fe05953bbe26db3c3a
|
|
| MD5 |
1c3a71d1031adb82883ba502751ff268
|
|
| BLAKE2b-256 |
9afde25ea0668feea3fa9700f30eb9bf76b4ddd9721ce3431e0a32acbdd3dc21
|