cd /news/developer-tools/tracarbon-track-gpu-power-and-carbon… · home topics developer-tools article
[ARTICLE · art-122431] src=github.com ↗ pub= topic=developer-tools verified=true sentiment=· neutral

Tracarbon: Track GPU power and carbon emissions while running local LLMs

Tracarbon, a Python library that tracks device energy consumption and calculates carbon emissions, now supports monitoring GPU power and carbon output while running local large language models. It detects the user's location and device automatically and exports measurements via CLI or API to exporters such as Prometheus and Datadog. The library covers Apple Silicon, Linux (Intel/AMD), and Windows NVIDIA GPUs, with cloud provider support for AWS, GCP, and Azure.

read5 min views1 publishedSep 7, 2026
Tracarbon: Track GPU power and carbon emissions while running local LLMs
Image: Michielbdejong (auto-discovered)

Tracarbon is a Python library that tracks your device's energy consumption and calculates your carbon emissions.

It detects your location and your device automatically before starting to export measurements to an exporter. It could be used as a CLI with already defined metrics or programmatically with the API by defining the metrics that you want to have.

Read more in this article.

pip install tracarbon
pip install 'tracarbon[datadog,prometheus,kubernetes]'
Devices Description
Mac ✅ Apple Silicon CPU, GPU, memory and Neural Engine energy via IOReport (no sudo). Excludes display and peripherals. Fallbacks: powermetrics (sudo), thenioreg .
Linux ✅ Supports Intel and AMD processors via RAPL . Intel uses the powercap interface. AMD is supported on kernel 5.8+ (powercap) or via theamd_energy driver (HWMON). Works with containers onKubernetes using theMetric API if available.
Windows ✅ NVIDIA GPU power via nvidia-smi . CPU, memory and host totals are unavailable.
Cloud Provider Description
AWS ✅ Use the hardware's usage with the EC2 instances carbon emissions datasets of cloud-carbon-coefficients .
GCP ✅ Use the hardware's usage with the GCP instances carbon emissions datasets of cloud-carbon-coefficients .
Azure ✅ Use the hardware's usage with the Azure instances carbon emissions datasets of cloud-carbon-coefficients .
GPU Description
NVIDIA ✅ Supported via nvidia-smi . Works on Linux, Windows, and Intel Macs. Supports multiple GPUs.
AMD ✅ Supported via rocm-smi oramd-smi on Linux. Supports multiple GPUs.
Apple Silicon ✅ Integrated GPU power via IOReport, without sudo. Falls back to powermetrics (requires sudo).
Intel ❌ Not yet implemented.
Exporter Description
Stdout Print the metrics in Stdout.
JSON Write the metrics in a JSON file.
Prometheus Send the metrics to Prometheus.
Datadog Send the metrics to Datadog.
Location Description Source
Worldwide Get the latest co2g/kwh in near real-time using the CO2Signal or ElectricityMaps APIs. See here for available Electricity Maps query modes. CO2Signal API orElectricityMaps
Europe Static file created from the European Environment Agency Emission for the co2g/kwh in European countries. EEA website
AWS Static file of the AWS Grid emissions factors. cloud-carbon-coefficients
GCP Static file of the GCP Grid emissions factors (2024 yearly data). GoogleCloudPlatform/region-carbon-info
Azure Static file of the Azure Grid emissions factors. cloud-carbon-coefficients

The environment variables can be set from an environment file .env.

Parameter Description
TRACARBON_CO2SIGNAL_API_KEY The api key received from CO2Signal orElectricityMaps .
TRACARBON_CO2SIGNAL_URL The url of CO2Signal is the default endpoint to retrieve the last known state of the zone, but it could be changed toElectricityMaps .
TRACARBON_METRIC_PREFIX_NAME The prefix to use in all the metrics name.
TRACARBON_INTERVAL_IN_SECONDS The interval in seconds to wait between the metrics evaluation.
TRACARBON_LOG_LEVEL The level to use for displaying the logs.
TRACARBON_IPINFO_TOKEN An optional ipinfo.io API token used for country detection from the IP address, lifting the anonymous rate limit.
TRACARBON_KUBERNETES_NODE_NAME The Kubernetes node name used to scope container metrics to the node being measured. Falls back to NODE_NAME when unset.

Request your API key

  • Go to CO2Signal and get your free API key for non-commercial use, or go toElectricityMaps for commercial use.
  • This API is used to retrieve the last known carbon intensity (in gCO2eq/kWh) of electricity consumed in your location.
  • Set your API key in the environment variables, in the .env file or directly in the configuration.
  • If you would like to start without an API key, it's possible, the carbon intensity will be loaded statistically from a file.
  • Launch Tracarbon 🚀

Command Line

tracarbon run

Prometheus with Kubernetes containers

tracarbon run --exporter-name Prometheus --containers

With the default metric prefix, container metrics are exposed with these Prometheus names:

Metric Labels
tracarbon_energy_consumption_kubernetes_total pod_name, pod_namespace, container_name, platform, containers, location, units
tracarbon_energy_consumption_kubernetes_cpu pod_name, pod_namespace, container_name, platform, containers, location, units
tracarbon_energy_consumption_kubernetes_memory pod_name, pod_namespace, container_name, platform, containers, location, units
tracarbon_carbon_emission_kubernetes_total pod_name, pod_namespace, container_name, platform, containers, location, source, units
tracarbon_carbon_emission_kubernetes_cpu pod_name, pod_namespace, container_name, platform, containers, location, source, units
tracarbon_carbon_emission_kubernetes_memory pod_name, pod_namespace, container_name, platform, containers, location, source, units

Zero values are exported. If Kubernetes returns no pod metrics, the CLI logs No Kubernetes container metrics were collected. Host metrics are still exported.

When running in Kubernetes, deploy Tracarbon per node and set NODE_NAME from spec.nodeName with the Downward API so container metrics are scoped to the measured node.

API

from tracarbon import TracarbonBuilder, TracarbonConfiguration

configuration = TracarbonConfiguration() # Your configuration
tracarbon = TracarbonBuilder(configuration=configuration).build()
tracarbon.start()
total_co2g = tracarbon.stop() # The CO2 grams emitted while it was running

with tracarbon:

report = tracarbon.report # Get the report
print(report.total_co2g)

total_co2g is None when no host carbon emission metric was collected. The total reflects collected samples.

Local: using uv

make init
make test-unit

The documentation is hosted here: https://fvaleye.github.io/tracarbon/documentation

── more in #developer-tools 4 stories · sorted by recency
── more on @tracarbon 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/tracarbon-track-gpu-…] indexed:0 read:5min 2026-09-07 ·