Kedro hook to trace system resources (Memory, CPU, Disk I/O, Network, Swap) during pipeline execution via pluggable sinks
Project description
kedro-psutil-telemetry
A Kedro hook that continuously samples system resources in a background thread during pipeline execution and dispatches metrics to pluggable sinks (console, MLflow, or your own).
Full documentation at saemeon.github.io/kedro-psutil-telemetry
Installation
pip install kedro-psutil-telemetry
That's it. Kedro auto-discovers the hook via entry points — no settings.py changes needed. Metrics are logged to the console at the default 1-second interval.
With MLflow support:
pip install kedro-psutil-telemetry[mlflow]
Usage
Zero-config (auto-discovery)
Install the package and run your pipeline. Kedro registers the hook automatically with default settings (console logging, 1s interval, all metrics enabled).
Custom configuration
To change the sink, interval, or any metric, register the hook explicitly in settings.py:
from kedro_psutil_telemetry import PipelinePsutilTelemetry, mlflow_sink
HOOKS = (
PipelinePsutilTelemetry(
sink=mlflow_sink, # log to MLflow instead of console
interval=2.0, # sample every 2 seconds
),
)
Manual registration takes precedence — Kedro won't double-register the hook.
Metrics
All metrics are tagged with the currently-running node name and use the configurable prefix (default: "pipeline").
| Metric | Description |
|---|---|
{prefix}.mem.rss_mb |
RSS memory of main process + children (MB) |
{prefix}.mem.swap_mb |
System swap usage (MB) |
{prefix}.cpu.percent |
System-wide CPU utilisation (%) |
{prefix}.io.read_mb |
Disk read since last sample (MB) |
{prefix}.io.write_mb |
Disk write since last sample (MB) |
{prefix}.net.sent_mbs |
Network bytes sent per second (MB/s) |
{prefix}.net.recv_mbs |
Network bytes received per second (MB/s) |
A peak-RSS and peak-CPU summary is logged at the end of every run.
All options
HOOKS = (
PipelinePsutilTelemetry(
sink=mlflow_sink, # or a list of sinks, or your own callable
interval=2.0, # sample every 2 seconds (default: 1.0)
prefix="pipeline", # metric name prefix (default: "pipeline")
include_children=True, # include child processes (default: True)
cpu=False, # disable a metric by passing False
net_sent=False,
disk_read="my.reads", # rename a metric by passing a string
),
)
Custom Sinks
Any callable matching (name: str, value: float, step: int, tags: dict | None) -> None works as a sink:
def my_sink(name, value, step, tags=None):
print(f"{name}={value:.2f} @ step {step} node={tags.get('node')}")
HOOKS = (PipelinePsutilTelemetry(sink=my_sink),)
License
MIT
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 kedro_psutil_telemetry-0.0.2.tar.gz.
File metadata
- Download URL: kedro_psutil_telemetry-0.0.2.tar.gz
- Upload date:
- Size: 213.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
835ae9e31fbf3007c76ba1a5e98e4b7d9f5deb8e40becc945a882a4e1768449a
|
|
| MD5 |
5ee7e9a43fceeb069db2d507ea1435d7
|
|
| BLAKE2b-256 |
29c064b336b6e6aabc11fad7e3a785494787117b8dfb44a4ccba0b782d42e35b
|
Provenance
The following attestation bundles were made for kedro_psutil_telemetry-0.0.2.tar.gz:
Publisher:
publish.yml on saemeon/kedro-psutil-telemetry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kedro_psutil_telemetry-0.0.2.tar.gz -
Subject digest:
835ae9e31fbf3007c76ba1a5e98e4b7d9f5deb8e40becc945a882a4e1768449a - Sigstore transparency entry: 1149581405
- Sigstore integration time:
-
Permalink:
saemeon/kedro-psutil-telemetry@5c7d98c92328de6a64a8ab1e08d524837b0b4261 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/saemeon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5c7d98c92328de6a64a8ab1e08d524837b0b4261 -
Trigger Event:
release
-
Statement type:
File details
Details for the file kedro_psutil_telemetry-0.0.2-py3-none-any.whl.
File metadata
- Download URL: kedro_psutil_telemetry-0.0.2-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd3c7961026f5e96140892edde8c07529a96c103c7851f1d8c98c026a8876763
|
|
| MD5 |
6f8c1dbf0d3a0455d7e6d87bfa9d481b
|
|
| BLAKE2b-256 |
9e8bb7145bc6bce78caee0139b019477e82a887d2b7379d38946fb126bd17a2f
|
Provenance
The following attestation bundles were made for kedro_psutil_telemetry-0.0.2-py3-none-any.whl:
Publisher:
publish.yml on saemeon/kedro-psutil-telemetry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kedro_psutil_telemetry-0.0.2-py3-none-any.whl -
Subject digest:
dd3c7961026f5e96140892edde8c07529a96c103c7851f1d8c98c026a8876763 - Sigstore transparency entry: 1149581487
- Sigstore integration time:
-
Permalink:
saemeon/kedro-psutil-telemetry@5c7d98c92328de6a64a8ab1e08d524837b0b4261 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/saemeon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5c7d98c92328de6a64a8ab1e08d524837b0b4261 -
Trigger Event:
release
-
Statement type: