Dead-simple centralized logging to Grafana Loki — drop-in handler or push_log().
Project description
tb-loki-central-logger
Send Python logs to Grafana Loki with no third-party dependencies (stdlib only): an async logging.Handler, plus push_log() / LokiClient for direct pushes.
Requires Python 3.10+.
Install
pip install tb-loki-central-logger
Latest builds from TestPyPI:
pip install -i https://test.pypi.org/simple/ tb-loki-central-logger
Configuration
Use environment variables or a .env file in the process working directory. When you import tb_loki_central_logger, config loads .env and does not override variables already set in the environment.
| Variable | Role |
|---|---|
GRAFANA_CLOUD_URL |
Loki host or full .../loki/api/v1/push (optional; defaults match Grafana Cloud) |
GRAFANA_CLOUD_USER |
Basic-auth username: numeric tenant / stack / “Loki user” id (not your email) |
GRAFANA_CLOUD_WRITE_API_KEY |
Basic-auth password: Loki write API token |
GRAFANA_CLOUD_API_KEY |
Legacy alias for the write token |
Where to find GRAFANA_CLOUD_URL and GRAFANA_CLOUD_USER
- Sign in to Grafana Cloud, pick your stack in the GRAFANA CLOUD sidebar.
- On Manage stack, open the Loki card → Details or Send logs. That page shows the Loki URL (often
https://logs-prod-…grafana.netwith push path/loki/api/v1/push) — use the host or full URL forGRAFANA_CLOUD_URL. - The same screen (or the “Send logs” / client setup snippet) shows the User value for HTTP Basic auth — put that number/string in
GRAFANA_CLOUD_USER.
You can also open the stack’s hosted logs page in the browser:
https://grafana.com/orgs/<your-org>/hosted-logs/<id> — the <id> in the path is usually the same value as GRAFANA_CLOUD_USER. Example: …/hosted-logs/1529533 → user 1529533.
Copy env.example and replace placeholders:
GRAFANA_CLOUD_URL=https://logs-prod-XXX.grafana.net
GRAFANA_CLOUD_USER=your-stack-user-id
GRAFANA_CLOUD_WRITE_API_KEY=your-loki-write-token
Create a write token under Grafana Cloud → your stack → Security / Access policies (scopes must allow Loki ingestion). See also Grafana Cloud Loki.
Logging example
import logging
from pathlib import Path
from tb_loki_central_logger import LokiHandler, basic_auth_from_env, load_dotenv
load_dotenv(Path(".env"))
auth = basic_auth_from_env()
if auth is None:
raise SystemExit(
"Set GRAFANA_CLOUD_WRITE_API_KEY (or GRAFANA_CLOUD_API_KEY) in the environment or .env; "
"optionally GRAFANA_CLOUD_USER for Basic auth."
)
root_logger = logging.getLogger()
root_logger.setLevel(logging.INFO)
handler = LokiHandler(labels={"service": "my-app", "env": "dev"}, basic_auth=auth)
handler.setLevel(logging.INFO)
root_logger.addHandler(handler)
logging.info("Hello, info")
logging.warning("Hello, warning")
logging.error("Hello, error")
handler.close()
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
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 tb_loki_central_logger-0.1.5.tar.gz.
File metadata
- Download URL: tb_loki_central_logger-0.1.5.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5df056f21b2c47485152774501cdec139243398e73f2f2f1ba3a2170e48e04a
|
|
| MD5 |
74be368e53130438844334dc387158b1
|
|
| BLAKE2b-256 |
3f70313e386746c3ca744290210cfd682960c543854a383dd0f0793421b57e2e
|
File details
Details for the file tb_loki_central_logger-0.1.5-py3-none-any.whl.
File metadata
- Download URL: tb_loki_central_logger-0.1.5-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31168a4da3fcc94863745600d4af559bd1e8ca2e00d9bc3c8684e6d7e8dde307
|
|
| MD5 |
d0c2dbb33018eaf66f97d2d4f80a54aa
|
|
| BLAKE2b-256 |
84d81578b652817555f4f42e2832e43b88c4256991cfb9c4e81ce84ba49061ec
|