API Reference¶
This page provides the complete technical documentation for all public modules in EcoTrace.
Core Module¶
The EcoTrace class is the main entry point for all monitoring operations.
ecotrace.core
¶
EcoTrace
¶
High-precision carbon tracking engine for production Python.
Monitors CPU and GPU energy consumption at function-level granularity using continuous 50 ms sampling, TDP-based energy estimation, and region-specific carbon intensity factors.
Energy formula
energy (Wh) = TDP × (utilization% / 100) × duration / 3600 gCO2 = (Wh / 1000) × carbon_intensity
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
region_code
|
ISO 3166-1 alpha-2 country code for grid carbon intensity lookup. Falls back to DEFAULT_REGION if the code is not recognized. |
'GLOBAL'
|
|
carbon_limit
|
Optional carbon budget threshold in gCO2. Reserved for future budget alert functionality. |
None
|
|
gpu_index
|
Zero-based index selecting which GPU to monitor when multiple devices are present. Validated to be a non-negative integer. |
0
|
|
api_key
|
Optional Google Gemini API key. If not provided, it will check the GEMINI_API_KEY environment variable. |
None
|
|
grid_api_key
|
Optional Electricity Maps API key for real-time carbon intensity data. If not provided, checks the ECOTRACE_GRID_API_KEY environment variable. Falls back to static data if unavailable. |
None
|
|
check_updates
|
If True (default), checks PyPI for newer versions at startup and prompts the user interactively. Set to False in CI/CD or non-interactive environments. |
True
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If gpu_index is not an integer or carbon_limit is not numeric. |
Source code in ecotrace/core.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 | |
remaining_budget
property
¶
Returns the remaining carbon budget in gCO2, or None if no limit is set.
This is the primary data interface for external consumers (IDE sidebar, CI/CD gates). The library provides the number; the consumer acts on it.
Returns:
| Type | Description |
|---|---|
|
float or None: Remaining gCO2 budget, or None if no limit configured. |
add_exporter(exporter)
¶
Registers a telemetry exporter to receive carbon metrics in real-time.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exporter
|
An object implementing an |
required |
Source code in ecotrace/core.py
425 426 427 428 429 430 431 | |
pause()
¶
Temporarily pauses carbon tracking for the session.
Source code in ecotrace/core.py
486 487 488 489 490 491 492 | |
resume()
¶
Resumes carbon tracking for the session.
Source code in ecotrace/core.py
494 495 496 497 498 499 500 501 502 | |
get_summary()
¶
Returns the current session metrics as a structured dictionary.
Provides programmatic access to all session data — suitable for use in notebooks, dashboards, custom reporting pipelines, and test assertions. Can be called at any point during or after a session.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
Session summary with keys:
- |
Source code in ecotrace/core.py
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | |
equivalence(gco2)
¶
Converts a gCO2 value into a human-readable real-world comparison.
Uses a tiered system: selects the most relatable comparison based on the magnitude of the emission value. The library owns this conversion; external consumers (IDE, reports) can call it to enrich their display.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gco2
|
Carbon emissions in grams of CO2. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
Human-readable equivalence string, or empty string if the |
|
|
value is too small to compare meaningfully. |
Source code in ecotrace/core.py
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | |
cpu_monitor()
¶
Context manager that brackets a code block with CPU monitoring.
Yields:
| Name | Type | Description |
|---|---|---|
EcoTrace |
The current instance for optional chaining. |
Source code in ecotrace/core.py
849 850 851 852 853 854 855 856 857 858 859 860 | |
gpu_monitor()
¶
Context manager that brackets a code block with GPU monitoring.
Yields:
| Name | Type | Description |
|---|---|---|
EcoTrace |
The current instance for optional chaining. |
Source code in ecotrace/core.py
862 863 864 865 866 867 868 869 870 871 872 873 | |
track(func)
¶
Decorator that measures carbon emissions for any function call.
Automatically detects whether the target is synchronous or asynchronous and selects the appropriate measurement strategy.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
The function to decorate. Can be sync or async. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Callable |
Wrapped function that measures emissions transparently. |
Source code in ecotrace/core.py
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 | |
track_gpu(func)
¶
Decorator that measures GPU carbon emissions with real utilization monitoring.
If no GPU is detected, the wrapped function executes normally without measurement. If the GPU becomes unavailable mid-calculation, the function result is preserved and a warning is logged.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
The function to decorate. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Callable |
Wrapped function with GPU carbon measurement. |
Source code in ecotrace/core.py
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 | |
measure(func, *args, **kwargs)
¶
Executes a synchronous function and measures its CPU carbon emissions.
Uses continuous background sampling for accurate utilization measurement. If the measurement calculation fails, the function result is still returned.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Synchronous callable to measure. |
required | |
*args
|
Positional arguments forwarded to |
()
|
|
**kwargs
|
Keyword arguments forwarded to |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Keys |
|
|
|
Source code in ecotrace/core.py
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 | |
measure_async(func, *args, **kwargs)
async
¶
Executes an async function and measures its CPU carbon emissions.
Uses continuous background sampling, which is particularly important for bursty or I/O-bound async workloads where point-in-time readings misrepresent actual utilization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Async callable to measure. |
required | |
*args
|
Positional arguments forwarded to |
()
|
|
**kwargs
|
Keyword arguments forwarded to |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Keys |
|
|
|
Raises:
| Type | Description |
|---|---|
Exception
|
Re-raises any exception from the wrapped function after |
Source code in ecotrace/core.py
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 | |
compare(func1, func2)
¶
Runs two functions sequentially and compares their carbon footprints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func1
|
First callable to measure. |
required | |
func2
|
Second callable to measure. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Keys |
|
|
measurement dict from |
Source code in ecotrace/core.py
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 | |
generate_pdf_report(filename='ecotrace_full_report.pdf', comparison=None, cpu_samples=None, gpu_samples=None)
¶
Generates a comprehensive PDF audit report dynamically.
If cpu_samples or gpu_samples are not provided, the engine automatically snapshots the internal session deques for full-history reporting.
Source code in ecotrace/core.py
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 | |
export_json(filename='ecotrace_report.json', csv_path='ecotrace_log.csv')
¶
Exports session data to a structured JSON file.
Combines hardware metadata, measurement history from the CSV audit log, and aggregate statistics into a single machine-readable document. This output is designed for consumption by the VS Code extension sidebar, CI/CD carbon gates, and third-party analytics tools.
The JSON schema contains three top-level keys:
meta: Hardware profile, region, version, and export timestamp.measurements: Array of per-function measurement records from the CSV audit log.summary: Aggregate statistics (total carbon, total duration, measurement count, top emitters).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
Output path for the JSON file. Defaults to
|
'ecotrace_report.json'
|
|
csv_path
|
Path to the CSV audit log to read measurements from.
Defaults to |
'ecotrace_log.csv'
|
Raises:
| Type | Description |
|---|---|
IOError
|
If the output file cannot be written. |
Example::
eco = EcoTrace(region_code="TR")
@eco.track
def my_function():
pass
my_function()
eco.export_json("report.json")
Source code in ecotrace/core.py
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 | |
track_block(block_name='custom_block')
¶
Context manager for tracking arbitrary code blocks.
Usage
with eco.track_block("data_processing"): result = expensive_operation()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
Name to use for the tracked block in reports. |
'custom_block'
|
Yields:
| Name | Type | Description |
|---|---|---|
None |
Control flow continues within the context. |
Source code in ecotrace/core.py
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 | |
__del__()
¶
Ensures all background monitoring threads are stopped and resources released.
Source code in ecotrace/core.py
1403 1404 1405 1406 1407 1408 1409 | |
CLI Module¶
Technical details of the Command Line Interface (ecotrace run, ecotrace gate, etc.).
ecotrace.cli
¶
EcoTrace CLI — Terminal interface for carbon-aware script profiling.
Provides four subcommands for headless carbon instrumentation without modifying the target source code:
ecotrace run <script.py> Run a script under full carbon monitoring
ecotrace analyze Summarize existing CSV audit logs
ecotrace export --json Export session data to machine-readable JSON
ecotrace benchmark Measure EcoTrace's own overhead
Design constraints
- Zero external dependencies (argparse + runpy + json from stdlib)
- Must never crash with ugly tracebacks — all commands are fail-safe
runpy.run_pathkeeps us in the same process so psutil isolation works
main()
¶
Main entry point for the ecotrace CLI command.
Report Module¶
Generates PDF and CSV carbon audit reports.
ecotrace.report
¶
create_cpu_usage_chart(samples_data, core_count=1)
¶
Renders a CPU usage line chart and saves it to a temporary PNG file.
Generates a visual representation of CPU utilization normalized against the total available logical cores to prevent inflation on heavily multi-threaded systems.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
samples_data
|
list
|
List of |
required |
core_count
|
int
|
Number of logical processor cores for scaling reference. |
1
|
Returns:
| Type | Description |
|---|---|
|
str or None: Absolute path to the generated PNG file, or None on failure. |
create_gpu_usage_chart(samples_data)
¶
Renders a GPU utilization line chart and saves it as a temporary PNG.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
samples_data
|
list
|
List of |
required |
Returns:
| Type | Description |
|---|---|
|
str or None: Path to PNG or None on failure. |
get_gemini_insights(api_key, cpu_info, gpu_info, history, region_code)
¶
Fetches dynamic carbon-optimization insights from Google Gemini.
Constructs a detailed prompt containing hardware specs, regional grid intensity, and recent execution history to generate actionable 'Green Coding' advice.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
api_key
|
str
|
Google Gemini API key. |
required |
cpu_info
|
dict
|
CPU hardware specs. |
required |
gpu_info
|
dict
|
GPU hardware specs (optional). |
required |
history
|
list
|
Recent measurements from CSV. |
required |
region_code
|
str
|
ISO region for grid intensity context. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
AI-generated insights or an error message if the call fails. |
sanitize_for_pdf(text)
¶
Strips non-ASCII characters for safe PDF rendering.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Input string potentially containing non-ASCII characters. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
ASCII-safe string formatted for FPDF encoding restrictions. |
Hardware Module¶
Auto-detects CPU, GPU, and RAM specifications.
ecotrace.hardware
¶
HardwareMonitor
¶
Hardware-level energy monitoring using exact RAPL sensors or advanced estimation.
Implements a hybrid approach to zero-configuration carbon tracking: 1. Hardware Mode (RAPL): Reads raw energy counters on supported hardware (Linux). 2. Advanced Estimation Mode: Falls back to Boavizta's logarithmic load curve to eliminate linear TDP estimation errors on unsupported systems.
estimate_cpu_power_w(tdp, utilization_pct)
¶
Advanced CPU power estimation based on Boavizta's non-linear curve.
Unlike simple linear TDP multiplication (TDP * utilization), this model accounts for baseline idle power and exponential load scaling.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tdp
|
float
|
Thermal Design Power in watts. |
required |
utilization_pct
|
float
|
CPU load percentage (0-100). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Estimated power draw in watts. |
get_cpu_energy_j()
¶
Reads the current CPU package energy counter in Joules.
Tries RAPL first (Linux), then Apple Silicon powermetrics (macOS arm64).
Returns:
| Name | Type | Description |
|---|---|---|
float |
Current energy in Joules, or None if hardware is unavailable. |
CPU Module¶
CPU TDP lookup and energy estimation logic.
ecotrace.cpu
¶
fetch_raw_cpu_info()
cached
¶
Retrieves raw CPU information bounding to py-cpuinfo caching.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Standardized CPU properties including architecture and physical identifiers. |
get_cpu_info(tdp_db, constants_data)
¶
Detects CPU hardware and resolves Thermal Design Power using a multi-source chain.
Matches available chip strings strictly against Apple Silicon static definitions first, before fuzzy matching against the Boavizta hardware database for x86 chips.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tdp_db
|
dict
|
Generated dictionary matching CPU hardware to known TDPs. |
required |
constants_data
|
dict
|
Application-wide constant configurations containing 'TDP_MAP'. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
CPU characteristics comprising: - brand (str): ASCII-cleaned display name for the physical CPU. - cores (int): Count of logical processing threads utilizing the OS scheduler. - tdp (float): Assigned structural TDP boundary in watts. |
load_tdp_database(csv_path)
¶
Parses the Boavizta CPU specification dataset into a TDP lookup table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
csv_path
|
str
|
File system path targeting 'cpu_data.csv'. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Hash map linking lowercase exact CPU model strings to their float TDP values. |
GPU Module¶
GPU power monitoring (NVIDIA NVML, AMD/Intel WMI).
ecotrace.gpu
¶
get_gpu_info(gpu_index, gpu_tdp_defaults)
¶
Detects GPU hardware and resolves its power limit using a tri-vendor fallback chain.
Initializes NVIDIA NVML for precision TDP tracking. If an NVIDIA GPU is not found, it falls back to WMI (Windows Management Instrumentation) to perform string-based matching and assigns default architectural estimated TDPs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gpu_index
|
int
|
Zero-based index of the target GPU device to monitor. |
required |
gpu_tdp_defaults
|
dict
|
Vendor mapping for missing hardware limits (Intel/AMD). |
required |
Returns:
| Type | Description |
|---|---|
|
dict or None: GPU metadata dictionary containing: - brand (str): Human-readable device name. - tdp (float): Power management limit in watts. - type (str): Vendor classifier ('nvidia', 'intel', 'amd', 'unknown'). - handle (object): NVML hardware handle if available, otherwise None. |
|
|
Returns None if no GPU is detected. |
get_gpu_power_w(gpu_info)
¶
Reads exact instantaneous GPU power usage in watts via NVML.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gpu_info
|
dict
|
The GPU metadata dictionary from get_gpu_info. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Current power draw in watts, or None if unavailable/unsupported. |
RAM Module¶
Process-scoped memory usage and energy calculation.
ecotrace.ram
¶
get_ram_info()
¶
Detects RAM specifications including type, speed, and total capacity.
Performs OS-specific detection using WMIC on Windows and dmidecode on Linux to retrieve the memory speed, which is used to classify the RAM type (DDR4 vs DDR5).
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Dictionary containing: - total_gb (float): System total memory in gigabytes. - type (str): RAM generation ('DDR4' or 'DDR5'). - speed_mhz (str): Active memory frequency, or 'Unknown'. |
Config Module¶
Region validation, carbon intensity resolution, and Live Grid API integration.
ecotrace.config
¶
fetch_live_carbon_intensity(region_code, grid_api_key)
¶
Fetches real-time carbon intensity from the Electricity Maps API.
Queries the Electricity Maps /v3/carbon-intensity/latest endpoint
for the specified region's current grid carbon intensity. The API
requires a valid authentication token.
This function is designed to be fail-safe: any network error, timeout, authentication failure, or malformed response will cause it to return None, allowing the caller to fall back to static data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
region_code
|
ISO 3166-1 alpha-2 country code (e.g. 'TR', 'DE'). Converted to an Electricity Maps zone via ZONE_MAPPING. |
required | |
grid_api_key
|
Electricity Maps API authentication token. |
required |
Returns:
| Type | Description |
|---|---|
|
float or None: Real-time carbon intensity in gCO2eq/kWh if the |
|
|
API query succeeds, or None if any error occurs. The caller |
|
|
should fall back to static |
|
|
when None is returned. |
Example
intensity = fetch_live_carbon_intensity("TR", "my-api-key") if intensity is not None: ... print(f"Live grid: {intensity} gCO2/kWh") ... else: ... print("Using static fallback data")
get_cli_config_path()
¶
Returns the absolute file system path to the CLI configuration file (~/.ecotrace/config.json).
identify_user_region()
¶
Attempts to auto-detect the user's current region via IP address.
load_cli_config(config_path=None)
¶
Loads stored CLI credentials and settings.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Config values (e.g. {'api_key': 'eco_usr_...', 'endpoint': '...'}), or empty dict if not found. |
load_constants(json_path)
¶
Loads constants from the JSON configuration file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
json_path
|
str
|
Absolute or relative path to the constants.json file. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Parsed JSON data, or an empty dictionary if loading fails. |
load_gpu_tdp_defaults(constants_data)
¶
Retrieves default GPU TDP estimations based on vendor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
constants_data
|
dict
|
Data dictionary containing 'GPU_TDP_DEFAULTS'. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Mapping of vendor names (intel, amd, unknown) to their respective TDPs in watts. |
resolve_carbon_intensity(region_code, constants_data)
¶
Resolves the carbon intensity value for the given region.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
region_code
|
str
|
The validated region code string. |
required |
constants_data
|
dict
|
Data dictionary containing 'CARBON_INTENSITY_MAP'. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Carbon intensity value in gCO2/kWh. |
save_cli_config(data, config_path=None)
¶
Saves CLI credentials and settings to ~/.ecotrace/config.json.
validate_region_code(region_code, constants_data)
¶
Validates the provided region code against known carbon mappings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
region_code
|
str
|
The ISO 3166-1 alpha-2 country code. |
required |
constants_data
|
dict
|
Data dictionary containing 'CARBON_INTENSITY_MAP'. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
Validated uppercase region code, or DEFAULT_REGION if invalid. |
Exceptions Module¶
All domain-specific exceptions raised by EcoTrace.
ecotrace.exceptions
¶
EcoTrace - Custom Exceptions
This module defines domain-specific exceptions for EcoTrace to provide meaningful, programmatic error handling instead of generic built-in failures.
AIInsightsError
¶
Bases: EcoTraceError
Raised when Google Gemini fails to generate insights.
CPUMonitoringError
¶
Bases: EcoTraceError
Raised when the CPU/process tree cannot be read due to permission or lifecycle issues.
EcoTraceConfigurationError
¶
Bases: EcoTraceError
Raised when EcoTrace is initialized with invalid parameters (e.g. negative GPU index).
EcoTraceError
¶
Bases: Exception
Base exception for all EcoTrace-related errors.
EcoTraceUpdateError
¶
Bases: EcoTraceError
Raised (or logged) when the auto-updater fails to connect to PyPI.
GPUMonitoringError
¶
Bases: EcoTraceError
Raised when the GPU monitoring thread encounters an unrecoverable failure.
LiveGridAPIError
¶
Bases: EcoTraceError
Raised when the real-time grid intensity API fails or times out.
ReportGenerationError
¶
Bases: EcoTraceError
Raised when the PDF report cannot be compiled or saved to disk.
Middleware¶
Flask (ecotrace.middleware.flask)¶
ecotrace.middleware.flask
¶
EcoTraceFlask
¶
Flask extension for tracking carbon emissions per request.
Injects 'X-Eco-Carbon-Emitted' and 'X-Eco-Duration' headers into every response.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
app
|
The Flask application. |
None
|
|
ecotrace_instance
|
Optional[EcoTrace]
|
Optional initialized EcoTrace instance. If not provided, it creates one quietly. |
None
|
log_to_csv
|
bool
|
Whether to log each request to the ecotrace_log.csv. Default False. |
False
|
init_app(app)
¶
Initializes the extension with the Flask app.
FastAPI / Starlette (ecotrace.middleware.fastapi)¶
ecotrace.middleware.fastapi
¶
EcoTraceMiddleware
¶
Bases: BaseHTTPMiddleware
FastAPI/Starlette middleware for tracking carbon emissions per request.
Injects 'X-Eco-Carbon-Emitted' and 'X-Eco-Duration' headers into every response.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
app
|
The ASGI application. |
required | |
ecotrace_instance
|
Optional[EcoTrace]
|
Optional initialized EcoTrace instance. If not provided, it creates one quietly. |
None
|
log_to_csv
|
bool
|
Whether to log each request to the ecotrace_log.csv. Default False. |
False
|
dispatch(request, call_next)
async
¶
Instruments a single HTTP request for carbon monitoring.
Plugins¶
pytest Plugin (ecotrace.plugins.pytest_plugin)¶
ecotrace.plugins.pytest_plugin
¶
pytest_addoption(parser)
¶
Add command-line flag to enable EcoTrace during tests.
pytest_configure(config)
¶
Initialize EcoTrace if the flag is enabled.
pytest_runtest_protocol(item, nextitem)
¶
Wrap test execution for carbon metric resolution.
Snapshots process-scoped CPU utilization across the execution lifecycle of each pytest item.
pytest_terminal_summary(terminalreporter, exitstatus, config)
¶
Print the carbon footprint summary at the end of the test session.