Sustainability Measurement Agent - A tool for collecting and analyzing sustainability metrics in cloud native enviroments.
Project description
Sustainability Measurements Agent (SMA)
SMA is an open-source tool designed to help deploy, collect and report sustainability measurements on cloud-native applications. It is not itself a measurement tool, but rather a framework to orchestrate, combine and aggregate results from emerging suite of sustainability measurement tools.
Capabilities (planned)
- Configuration driven operation
- Support for multiple scenarios
- Continuous monitoring and reporting (as a Service)
- Experiment Measurements / Benchmarking
- Ad-hoc measurements
- Programmatic measurements via API
- Multiple report formats
- CSV
- Post processing and aggregation
- Pandas
- Grafana Dashboards
- CLI tool
Use / Install
Make sure you have Python 3.8+ as well as hdf5 and jupyter installed. You may need to install additional dependencies depending on your setup, e.g., c-blosc lzo bzip2 gcc.
pip install sustainability-measurement-agent
touch main.py
import sys
from sma import SustainabilityMeasurementAgent, Config, SMAObserver
config = Config.from_file("examples/minimal.yaml")
sma = SustainabilityMeasurementAgent(config)
sma.connect()
def wait_for_user() -> None:
input("Hit Enter to to Stop Measuring...")
sma.run(wait_for_user)
sma.teardown()
report_location = config.report.get("location")
if report_location:
print(f"Report written to {report_location}")
$ python main.py
$ Hit Enter to to Stop Measuring...
SMA also ships with a cli tool, that allows some basic operations:
$ sma --help
Usage: sma [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
fetch Attempts to fetches measurements again using the provided
configuration file.
list Lists all reports for a given configuration file.
run Run the Sustainability Measurement Agent with a given...
Architecture and Lifecycle
SMA follows a simple lifecycle:
Fully driven by configuration files, SMA connects to external services (e.g., Prometheus), deploys measurement tools (e.g., Kepler), and once instrcuted via the API (run()), starts the observation according to the configured mode (trigger, timer, continuous). Finally, SMA collects the measurement data, generates reports, and tears down any deployed infrastructure (if configured to do so).
SMA exposes an observer API (SMAObserver), which allows to hook into the lifecycle events (see the diagram) to extend SMA's functionality programmatically, or to integrate into experiment frameworks.
Modules can optionally be used to add functionality, such as installing monitoring infrascture, preparing deployments, running workloads, and enhancing reports.
Configuration
SMA is configured via YAML files. See the examples/ folder for sample configurations. The configuration allows to specify which measurement tools to use, how to deploy them, and how to collect and report the measurements.
Configuration Structure
The configuration file consists of the following main sections:
1. Version
sma:
version: 0.2.0
Specifies the SMA configuration schema version.
3. Observability Services
services:
prometheus:
address: http:/<IP>
Defines external services used for data collection, sofar we only support Prometheus.
| Field | Description |
|---|---|
prometheus.address |
URL of the Prometheus server for metrics collection |
5. Observation
observation:
mode: trigger
window:
left: 10s
right: 10s
duration: 10s
targets:
- name: sut
namespace: kubeai
| Field | Options/Type | Description |
|---|---|---|
mode |
trigger, timer, module |
trigger: Measurement starts/stops based on a Python function that blocks timer: Measurement based on time window settings\ |
module: run a trigger function from a module, e.g. a workload runner |
||
trigger_module |
When in module mode, specify the module name to call the trigger from | |
window.left |
Duration (e.g., 10s) |
Time to capture before the measurement trigger |
window.right |
Duration (e.g., 10s) |
Time to capture after the measurement trigger |
window.duration |
Duration (e.g., 10s) |
Total measurement duration |
targets[].name |
String | Name identifier for the target workload |
targets[].namespace |
String | Kubernetes namespace of the target workload |
Depoending on the mode, SMA will not use of all of the windowing parameters, e.g., duration is only considered in timer mode. Both left and right windows are optional and mean, SMA will wait before handing off the measurement to the next API call.
6. Measurements
measurements:
# Custom PromQL query
- measurement_name:
type: aggregate
layer: pod
query: <PromQL query>
step: 30
unit: watts
target:
- all
| Field | Options/Type | Description |
|---|---|---|
type |
raw, aggregate, counter, guage |
raw: Unprocessed metric data aggregate: Aggregated/computed metrics |
layer |
substrate,pod, node, process |
The abstraction level being measured |
query |
PromQL string | Prometheus query to retrieve the metric. Supports template variables:${namespace}: Replaced with target namespace${SMA_SELECTORS}: Additional label filters |
sensors |
List of strings | List of sensors required for this measurement (used with prepared_query) |
step |
Integer (seconds) | Sampling interval in seconds |
unit |
String | Measurement unit (e.g., watts, joules, cpu_time_seconds, metadata) |
target |
List of strings | Target names to measure, or all for all defined targets |
Query Methods:
- Custom Query: Use
queryfield with custom PromQL - Prepared Query: Use
prepared_queryfield with predefined SMA queries (e.g.,pod_kepler_energy_consumption,node_scaphandre_energy_consumption)
Example Measurements:
- CPU Usage: Container CPU usage across namespaces
- Wall Power: Physical power consumption from smart plugs (e.g., Shelly)
- Pod Power (Kepler): Per-pod energy consumption via Kepler
- Node Power (Scaphandre): Host-level power measurements
- Container Info: Metadata about running containers
7. Report
report:
format: csv # Output format
location: reports/${startTime}_${runHash}/
filename: "${name}_${startTime}.csv"
| Field | Type | Description |
|---|---|---|
format |
String | Output format (currently supports csv) |
location |
String | Directory path for reports. Supports template variables:${startTime}: Timestamp when measurement started${runHash}: Unique hash for the measurement run |
filename |
String | File naming pattern. Supports template variables:${name}: Measurement name${startTime}: Measurement start time |
Modules can add their own files to the report directory through the onReport event.
API
Development
- Install pipenv:
pip install pipenv - Install dependencies:
pipenv install --dev - Activate virtual environment:
pipenv shell - Do your thing. Eventually with tests.
- If you add new dependencies, run
pipenv lock --preto update thePipfile.lock. - If you want to release a new version, update the version in
pyproject.tomland runpipenv run pyproject-pipenv --fixand commit the changes. - Tag your release:
git tag vx.y.zandgit push --tags - Create a new release on GitHub, this will trigger the upload to PyPI via GitHub Actions.
Acknowledgements
This project builds upon prior work done in the OXN project, GOXN project and CLUE and is part of the research at ISE-TU Berlin.
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
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 sustainability_measurement_agent-0.2.0.tar.gz.
File metadata
- Download URL: sustainability_measurement_agent-0.2.0.tar.gz
- Upload date:
- Size: 39.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4087f61bf163bfc91179f9152cf60ec538b53421291f018ac51ec3d4b17da4df
|
|
| MD5 |
eb1cfbfd8981ea04d068bcbc147f043b
|
|
| BLAKE2b-256 |
5d94e534b4020f3ab8cc8454bea8fe74b28beafba2ec5f68b85c93279aa755fc
|
Provenance
The following attestation bundles were made for sustainability_measurement_agent-0.2.0.tar.gz:
Publisher:
python-publish.yml on ISE-TU-Berlin/sustainability-measurement-agent
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sustainability_measurement_agent-0.2.0.tar.gz -
Subject digest:
4087f61bf163bfc91179f9152cf60ec538b53421291f018ac51ec3d4b17da4df - Sigstore transparency entry: 919721267
- Sigstore integration time:
-
Permalink:
ISE-TU-Berlin/sustainability-measurement-agent@0b0c9e0e1af14240ac7eb714b0313ea8f9738651 -
Branch / Tag:
refs/tags/v0.2.0-fix - Owner: https://github.com/ISE-TU-Berlin
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0b0c9e0e1af14240ac7eb714b0313ea8f9738651 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sustainability_measurement_agent-0.2.0-py3-none-any.whl.
File metadata
- Download URL: sustainability_measurement_agent-0.2.0-py3-none-any.whl
- Upload date:
- Size: 38.8 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 |
ade954d51e0dcf142f2ba05391a1ad39b22ce506ced252fd0e8a0003a1866291
|
|
| MD5 |
130f5704734078023a216fc1d24c6d39
|
|
| BLAKE2b-256 |
40fdd14a234b463b96926863a1c8881def3b7412b6a2e91dd43776d984f76ebd
|
Provenance
The following attestation bundles were made for sustainability_measurement_agent-0.2.0-py3-none-any.whl:
Publisher:
python-publish.yml on ISE-TU-Berlin/sustainability-measurement-agent
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sustainability_measurement_agent-0.2.0-py3-none-any.whl -
Subject digest:
ade954d51e0dcf142f2ba05391a1ad39b22ce506ced252fd0e8a0003a1866291 - Sigstore transparency entry: 919721272
- Sigstore integration time:
-
Permalink:
ISE-TU-Berlin/sustainability-measurement-agent@0b0c9e0e1af14240ac7eb714b0313ea8f9738651 -
Branch / Tag:
refs/tags/v0.2.0-fix - Owner: https://github.com/ISE-TU-Berlin
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0b0c9e0e1af14240ac7eb714b0313ea8f9738651 -
Trigger Event:
release
-
Statement type: