Skip to main content

hannah-logging (Python)

Ships the logs of a Hannah component to the Hannah log collector, so a user can download one archive of all components' logs from the WebUI.

The library adds one logging.Handler. Your existing handlers (stdout, journald, syslog) keep working unchanged.

Installation

pip install hannah-logging

The library relies on the hannah-proto version the component already uses, because every call to Hannah Core has to carry the matching protocol version.

Usage

import logging
import hannah_logging

logging.basicConfig(level=logging.INFO)

# As early as possible: everything logged from here on is buffered.
shipping = hannah_logging.install(
    "telegram",
    version=__version__,
    secrets=[config.bot_token],                         # masked wherever they appear
    logger_categories={"hannah.stt": hannah_logging.TRANSCRIPT},
)

# Once the config is loaded:
shipping.connect(
    hannah_address="localhost:50051",                   # discovery via Hannah Core
    collector_address=None,                             # optional static fallback
)

Setting the collector address directly

A component that knows the collector address itself (Hannah Core, which announces it) passes it in instead of subscribing to discovery:

shipping.set_collector_address("192.168.1.10:50061")   # None withdraws it

It starts shipping if connect hasn't been called yet, takes precedence over the static collector_address, and a new address moves the stream.

Categories

Each line is tagged GENERAL, TRANSCRIPT (speech transcripts, user utterances) or METADATA (room and device names, presence). Exports can leave out the last two, and the WebUI does so by default.

  • By logger name: logger_categories={"hannah.stt": TRANSCRIPT} also covers child loggers such as hannah.stt.whisper.
  • Per call: log.info("heard: %s", text, extra={hannah_logging.CATEGORY_ATTR: hannah_logging.TRANSCRIPT})

Secrets

Before a line leaves the process, the library masks:

  • values of keys such as password, token, api_key, secret, psk
  • Bearer tokens, JWTs, credentials in URLs (mqtt://user:pw@host), PEM private keys
  • Telegram bot tokens and well-known token prefixes (glpat-, ghp_, …)
  • every value passed as secrets=[…] or later through shipping.add_secret(…)

Extra regexes go in secret_patterns=[…]. The component's own handlers still see the unmasked line.

Behaviour

  • Buffer: 4 MiB by default (max_buffer_bytes). When it is full, the oldest lines are dropped and reported to the collector as a gap. While no collector is known, the buffer simply keeps running as a ring.
  • Timestamps are taken when a line is logged, not when it is sent.
  • Discovery: subscribes to Hannah Core's infrastructure announcements and follows the log collector when it moves. If Core is unreachable, the last known collector is kept. The static collector_address is used while none is announced.
  • Never blocks the component: sending runs on its own threads. Connection problems are logged once to the hannah_logging logger (not shipped) and retried with backoff.
  • Shutdown: at exit, the library tries for up to 2 seconds to send what is still buffered (shipping.close(timeout=…)).

Release files for hannah-logging 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for hannah-logging 0.2.0
File Size Uploaded
hannah_logging-0.2.0.tar.gz 15.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for hannah-logging 0.2.0
File Interpreter ABI Platform
hannah_logging-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 27.3 kB

Release files / hannah_logging-0.2.0.tar.gz

Download URL hannah_logging-0.2.0.tar.gz
Size 15.2 kB
Tags Source
SHA-256 checksum
How to use checksums
e49181141e4b1205d3e8e4b36610ad75bafe500c302f6cd985bba2ca7f64dc7a
BLAKE2b-256 checksum
How to use checksums
ec729ea4b6dda42848e899050a06fea9fcbddfcb27141041d0cde7d3cbf9901c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.14.6

Release files / hannah_logging-0.2.0-py3-none-any.whl

Download URL hannah_logging-0.2.0-py3-none-any.whl
Size 12.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
d2643cb3abaf447e4326bf57300b240761e9957cba89ed5af77292a8f01e20fb
BLAKE2b-256 checksum
How to use checksums
efccf1297af21deacd07fb8e5b849430dbb4315b78312d51e38eca05b1a34a57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.14.6

Release history Release notifications | RSS feed

0.3.0

2 release files

0.2.1

2 release files

This release

0.2.0 This release

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page