-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpower_logger.py
executable file
·889 lines (697 loc) · 32.3 KB
/
power_logger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
#!/usr/bin/env python3
# pylint: disable=W0603,W0602,W1203,W0702
import json
import subprocess
import time
import plistlib
import argparse
import zlib
import base64
import xml
import signal
import sys
import uuid
import os
import os.path
import stat
import urllib.request
import configparser
import sqlite3
import http
import threading
import logging
import select
import math
from functools import lru_cache
from datetime import timezone
from pathlib import Path
from libs import caribou
VERSION = '0.6'
LOG_LEVELS = ['debug', 'info', 'warning', 'error', 'critical']
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
# Shared variable to signal the thread to stop
stop_signal = threading.Event()
class SharedTime:
def __init__(self):
self._time = time.time()
self._lock = threading.Lock()
def set_tick(self):
with self._lock:
self._time = time.time()
def get_tick(self):
with self._lock:
return self._time
APP_NAME = 'io.green-coding.hogger'
APP_SUPPORT_PATH = Path(f"/Library/Application Support/{APP_NAME}")
APP_SUPPORT_PATH.mkdir(parents=True, exist_ok=True)
DATABASE_FILE = APP_SUPPORT_PATH / 'db.db'
stats = {
'combined_energy_mj': 0,
'cpu_energy_mj': 0,
'gpu_energy_mj': 0,
'ane_energy_mj': 0,
'energy_impact': 0,
'embodied_carbon_g': 0,
'operational_carbon_g': 0,
}
MIGRATIONS_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'migrations')
global_settings = {}
machine_uuid = None
conn = None
c = None
def kill_program():
# We set the stop_signal for everything to shut down in an orderly fashion
global stop_signal
stop_signal.set()
logging.info('Stopping program due to an inconsistent state of the program.')
time.sleep(5) # Give everything some time to shutdown
# Now we need to exit the program as the upload thread is not responding and needs to be killed
os._exit(5)
def sigint_handler(_, __):
global stop_signal
if stop_signal.is_set():
# If you press CTR-C the second time we bail
sys.exit(2)
stop_signal.set()
logging.info('Terminating all processes. Please be patient, this might take a few seconds.')
def siginfo_handler(_, __):
print(global_settings)
print(stats)
logging.info(f"System stats:\n{stats}\n{global_settings}")
signal.signal(signal.SIGINT, sigint_handler)
signal.signal(signal.SIGTERM, sigint_handler)
signal.signal(signal.SIGINFO, siginfo_handler)
# This is a replacement for time.sleep as we need to check periodically if we need to exit
# We choose a max exit time of one second as we don't want to wake up too often.
def sleeper(stop_event, duration):
end_time = time.time() + duration
while time.time() < end_time:
if stop_event.is_set():
return
time.sleep(1)
def run_powermetrics(local_stop_signal, filename: str = None):
buffer = []
def process_line(line):
line = line.strip().replace('&', '&')
buffer.append(line)
if line == '</plist>':
logging.debug('Parsing new input')
parse_powermetrics_output(''.join(buffer))
buffer.clear()
logging.info(stats)
if filename:
logging.info(f"Reading file {filename}")
with open(filename, 'r', encoding='utf-8') as file:
for line in file.readlines():
process_line(line)
else:
cmd = ['powermetrics',
'--show-all',
'-i', str(global_settings['powermetrics']),
'-f', 'plist']
logging.info(f"Starting powermetrics process: {' '.join(cmd)}")
with subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, text=True) as process:
os.set_blocking(process.stdout.fileno(), False)
partial_buffer = ''
while not local_stop_signal.is_set():
# Make sure that the timeout is greater than the output is coming in
rlist, _, _ = select.select([process.stdout], [], [], int(global_settings['powermetrics'] / 1_000 * 2 ))
if rlist:
# This is a little hacky. The problem is that select just reads data and doesn't respect the lines
# so it happens that we read in the middle of a line.
data = rlist[0].read()
if data == '':
logging.error('EOF reached: the subprocess has closed its stdout.')
local_stop_signal.set()
break
data = partial_buffer + data
lines = data.splitlines()
try:
if not data.endswith('\n'):
partial_buffer = lines.pop()
else:
partial_buffer = ''
for line in lines:
process_line(line)
except IndexError:
# This happens when the process is killed before we exit here so stop_signal should be set. If not
# there is a problem with powermetrics and we should report and exit.
if not local_stop_signal.is_set():
logging.error('The pipe to powermetrics has been closed. Exiting')
local_stop_signal.set()
def upload_data_to_endpoint(local_stop_signal):
while not local_stop_signal.is_set():
thread_conn = sqlite3.connect(DATABASE_FILE)
tc = thread_conn.cursor()
# We need to limit the amount of data here as otherwise the payload becomes to big
tc.execute('SELECT id, time, data FROM measurements WHERE uploaded = 0 LIMIT 10;')
rows = tc.fetchall()
# When everything is uploaded we sleep
if not rows:
sleeper(local_stop_signal, global_settings['upload_delta'])
continue
payload = []
for row in rows:
row_id, time_val, data_val = row
settings_upload = global_settings.copy()
# We don't need this in the DB on the server
del settings_upload['api_url']
del settings_upload['gmt_auth_token']
del settings_upload['electricitymaps_token']
settings_upload['client_version'] = VERSION
payload.append({
'time': time_val,
'data': data_val,
'settings': json.dumps(settings_upload),
'machine_uuid': machine_uuid,
'row_id': row_id
})
request_data = json.dumps(payload).encode('utf-8')
headers = {'content-type': 'application/json'}
if global_settings['gmt_auth_token']:
headers['X-Authentication'] = global_settings['gmt_auth_token']
# As sometimes the urllib waits for ever ignoring the timeout we set a signal for 60 seconds and if it hasn't
# been canceled we kill everything
kill_timer = threading.Timer(60.0, kill_program)
kill_timer.start()
req = urllib.request.Request(url=global_settings['api_url'],
data=request_data,
headers=headers,
method='POST')
logging.info(f"Uploading {len(payload)} rows to: {global_settings['api_url']}")
try:
start_time = time.time()
with urllib.request.urlopen(req, timeout=30) as response:
if response.status == 204:
for p in payload:
tc.execute('DELETE FROM measurements WHERE id = ?;', (p['row_id'],))
thread_conn.commit()
upload_delta = time.time() - start_time
logging.debug(f"Uploaded. Took {upload_delta:.2f} seconds")
else:
logging.info(f"Failed to upload data: {payload}\n HTTP status: {response.status}")
sleeper(local_stop_signal, global_settings['upload_delta']) # Sleep if there is an error
kill_timer.cancel()
except (urllib.error.HTTPError,
ConnectionRefusedError,
urllib.error.URLError,
http.client.RemoteDisconnected,
ConnectionResetError) as exc:
logging.debug(f"Upload exception: {exc}")
kill_timer.cancel()
sleeper(local_stop_signal, global_settings['upload_delta']) # Sleep if there is an error
thread_conn.close()
def find_top_processes(data: list, elapsed_ns:int):
# As iterm2 will probably show up as it spawns the processes called from the shell we look at the tasks
# new_data = []
# for coalition in data:
# if coalition['name'].lower() in global_settings['resolve_coalitions'] or coalition['name'].strip() == '':
# new_data.extend(coalition['tasks'])
# else:
# new_data.append(coalition)
output = []
for p in sorted(data, key=lambda k: k['energy_impact'], reverse=True)[:15]:
output.append({
'name': p['name'],
# Energy_impact and cputime are broken so we need to use the per_s and convert them
# Check the https://www.green-coding.io/blog/ for details
'energy_impact': round((p['energy_impact_per_s'] / 1_000_000_000) * elapsed_ns),
'cputime_ms': p['cputime_ms_per_s'] * (elapsed_ns / 1_000_000_000),
})
return output
class RemoveNaNEncoder(json.JSONEncoder):
def encode(self, obj):
def remove_nan(o):
if isinstance(o, dict):
return {remove_nan(k): remove_nan(v) for k, v in o.items()
if not ((isinstance(k, float) and math.isnan(k)) or
(isinstance(v, float) and math.isnan(v)))}
elif isinstance(o, list):
return [remove_nan(v) for v in o
if not (isinstance(v, float) and math.isnan(v))]
else:
return o
cleaned_obj = remove_nan(obj)
return super(RemoveNaNEncoder, self).encode(cleaned_obj)
def get_cmdline_shell_ps(pid):
try:
result = subprocess.run(
['ps', '-p', str(pid), '-o', 'command='],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
check=True
)
return result.stdout.strip()
except subprocess.CalledProcessError:
return None
def resolve_names(data):
updated_coalitions = []
for coalition in data['coalitions']:
name = coalition['name'].strip().lower()
if name in global_settings['resolve_coalitions'] or not name:
tasks = coalition.get('tasks', [])
updated_coalitions.extend(tasks if isinstance(tasks, list) else [coalition])
else:
updated_coalitions.append(coalition)
for i, coalition in enumerate(updated_coalitions):
if coalition['name'].lower().strip() in global_settings['resolve_process']:
if cmd := get_cmdline_shell_ps(coalition['pid']):
updated_coalitions[i]['name'] = cmd
data['coalitions'] = updated_coalitions
return data
get_grid_intensity_cache = {'value': None, 'timestamp': 0}
def get_grid_intensity():
global get_grid_intensity_cache
if not global_settings.get('electricitymaps_token'):
return None
if global_settings['electricitymaps_token'] == 'THIS_IS_A_TEST':
return 100
if time.time() - get_grid_intensity_cache['timestamp'] < 900:
return get_grid_intensity_cache['value']
url = 'https://api.electricitymap.org/v3/carbon-intensity/latest'
headers = {'auth-token': global_settings['electricitymaps_token']}
kill_timer = threading.Timer(60.0, kill_program)
kill_timer.start()
try:
req = urllib.request.Request(url, headers=headers)
with urllib.request.urlopen(req, timeout=30) as response:
response_data = json.loads(response.read().decode())
get_grid_intensity_cache = {
'value': response_data['carbonIntensity'],
'timestamp': time.time()
}
kill_timer.cancel()
except (urllib.error.HTTPError,
ConnectionRefusedError,
urllib.error.URLError,
http.client.RemoteDisconnected,
ConnectionResetError) as exc:
logging.error(f"Failed to fetch grid intensity: {exc}")
kill_timer.cancel()
finally:
return get_grid_intensity_cache.get('value') # Return None if no cache value exists
def get_mac_model():
try:
result = subprocess.run(
['system_profiler', 'SPHardwareDataType'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
check=True
)
for line in result.stdout.splitlines():
if 'Model Identifier' in line:
return line.split(":")[1].strip()
except subprocess.CalledProcessError as e:
logging.error(f"Error occurred while fetching Mac model: {e}")
return None
@lru_cache(maxsize=10) # This should normally only cache one value as we use seconds
def embodied_co2eq_g(time_delta_seconds: int):
total_hours = global_settings['overall_usage_years'] * 365 * global_settings['daily_computer_usage_hours']
total_seconds = total_hours * 60 * 60
mac_model = get_mac_model()
if not mac_model:
logging.error("Failed to fetch Mac model")
return 0
if not os.path.exists(os.path.join(SCRIPT_DIR, 'mac_embodied_carbon.json')):
logging.error("Embodied carbon data not found")
return 0
with open(os.path.join(SCRIPT_DIR, 'mac_embodied_carbon.json')) as f:
embodied_co2eq_data = json.load(f)
embodied_co2eq = embodied_co2eq_data.get(mac_model, None)
# For now we return 0 if we can't find the model. We could think about taking an average of all models here.
if not embodied_co2eq:
logging.error(f"Mac model {mac_model} not found in embodied carbon data")
return 0
embodied_co2eq_total = sum(embodied_co2eq['EmissionsBreakdown'][key]['Emissions'] for key in ['Production', 'Transportation', 'EndOfLifeProcessing'])
return (embodied_co2eq_total / total_seconds) * time_delta_seconds * 1000 # in g
def parse_powermetrics_output(output: str):
global stats
for data in output.encode('utf-8').split(b'\x00'):
if data:
grid_intensity = get_grid_intensity()
if data == b'powermetrics must be invoked as the superuser\n':
raise PermissionError('You need to run this script as root!')
try:
data = plistlib.loads(data)
data = resolve_names(data)
# Sql can not handle timestamps so we convert them to milliseconds
data['timestamp'] = int(data['timestamp'].replace(tzinfo=timezone.utc).timestamp() * 1e3)
except xml.parsers.expat.ExpatError as exc:
logging.error(f"XML Error:\n{data}")
raise exc
cpu_energy_data = {}
energy_impact = round(data['all_tasks'].get('energy_impact_per_s') * data['elapsed_ns'] / 1_000_000_000)
if 'ane_energy' in data['processor']:
cpu_energy_data = {
'combined_energy': round(data['processor'].get('combined_power', 0) * data['elapsed_ns'] / 1_000_000_000.0),
'cpu_energy': round(data['processor'].get('cpu_energy', 0)),
'gpu_energy': round(data['processor'].get('gpu_energy', 0)),
'ane_energy': round(data['processor'].get('ane_energy', 0)),
'energy_impact': energy_impact,
}
elif 'package_joules' in data['processor']:
# Intel processors report in joules/ watts and not mJ
cpu_energy_data = {
'combined_energy': round(data['processor'].get('package_joules', 0) * 1_000),
'cpu_energy': round(data['processor'].get('cpu_joules', 0) * 1_000),
'gpu_energy': round(data['processor'].get('igpu_watts', 0) * data['elapsed_ns'] / 1_000_000_000.0 * 1_000),
'ane_energy': 0,
'energy_impact': energy_impact,
}
if grid_intensity:
co2eq = cpu_energy_data['combined_energy'] * grid_intensity / 3_600_000_000 # We need to convert to kWh from mJ
else:
co2eq = None
c.execute('''INSERT INTO power_measurements
(time, combined_energy, cpu_energy, gpu_energy, ane_energy, energy_impact, co2eq ) VALUES
(?, ?, ?, ?, ?, ?, ?)''',
(data['timestamp'],
cpu_energy_data['combined_energy'],
cpu_energy_data['cpu_energy'],
cpu_energy_data['gpu_energy'],
cpu_energy_data['ane_energy'],
cpu_energy_data['energy_impact'],
co2eq))
top_processes = find_top_processes(data['coalitions'], data['elapsed_ns'])
for process in top_processes:
c.execute('INSERT INTO top_processes (time, name, energy_impact, cputime_per) VALUES (?, ?, ?, ?)',
(data['timestamp'], process['name'], process['energy_impact'], process['cputime_ms']))
# Create the new upload data structure
upload_data = {
'machine_uuid': machine_uuid,
'timestamp': data['timestamp'],
'top_processes': top_processes,
'timezone': f"{time.tzname[0]}/{time.tzname[1]}",
'grid_intensity_cog': grid_intensity,
'combined_energy_mj': cpu_energy_data['combined_energy'],
'cpu_energy_mj': cpu_energy_data['cpu_energy'],
'gpu_energy_mj': cpu_energy_data['gpu_energy'],
'ane_energy_mj': cpu_energy_data['ane_energy'],
'energy_impact': cpu_energy_data['energy_impact'],
'hw_model': data['hw_model'],
'elapsed_ns': data['elapsed_ns'],
'thermal_pressure': data['thermal_pressure'],
'embodied_carbon_g': embodied_co2eq_g(round(data['elapsed_ns'] / 1_000_000_000)),
'operational_carbon_g': co2eq,
}
compressed_data = zlib.compress(str(json.dumps(upload_data, cls=RemoveNaNEncoder)).encode())
compressed_data_str = base64.b64encode(compressed_data).decode()
c.execute('INSERT INTO measurements (time, data, uploaded) VALUES (?, ?, 0)',
(data['timestamp'], compressed_data_str))
conn.commit()
logging.debug('Data added to the DB')
for key in stats:
if upload_data[key]:
stats[key] += upload_data[key]
def save_settings():
global machine_uuid
c.execute('SELECT machine_uuid, powermetrics, api_url, upload_delta, upload_data FROM settings ORDER BY time DESC LIMIT 1;')
result = c.fetchone()
if result:
machine_uuid, last_powermetrics, last_api_url, last_upload_delta, last_upload_data = result
if (last_powermetrics == global_settings['powermetrics'] and
last_api_url.strip() == global_settings['api_url'].strip() and
last_upload_delta == global_settings['upload_delta'] and
last_upload_data == global_settings['upload_data']):
return False
else:
machine_uuid = str(uuid.uuid1())
c.execute('''INSERT INTO settings
(time, machine_uuid, powermetrics, api_url, upload_delta, upload_data) VALUES
(?, ?, ?, ?, ?, ?)''', (
int(time.time()),
machine_uuid,
global_settings['powermetrics'],
global_settings['api_url'].strip(),
global_settings['upload_delta'],
global_settings['upload_data'],
))
conn.commit()
logging.debug(f"Saved Settings:\n{global_settings}")
return True
def is_powermetrics_running():
try:
output = subprocess.check_output('pgrep powermetrics', shell=True).decode()
return bool(output.strip())
except:
return False
def check_DB(local_stop_signal, stime: SharedTime):
# The powermetrics script should return ever global_settings['powermetrics'] ms but because of the way we batch things
# we will not get values every n ms so we have quite a big value here.
# powermetrics = 5000 ms in production and 1000 in dev mode
interval_sec = global_settings['powermetrics'] * 20 / 1_000
# We first sleep for quite some time to give the program some time to add data to the DB
sleeper(local_stop_signal, interval_sec)
while not local_stop_signal.is_set():
logging.debug('DB Check')
n_ago = int((stime.get_tick() - interval_sec) * 1_000)
thread_conn = sqlite3.connect(DATABASE_FILE)
tc = thread_conn.cursor()
tc.execute('SELECT MAX(time) FROM measurements')
result = tc.fetchone()
thread_conn.close()
if result and result[0]:
if result[0] < n_ago:
logging.error('No new data in DB. Exiting to be restarted by the os')
local_stop_signal.set()
else:
logging.error('We are not getting values from the DB for checker thread.')
local_stop_signal.set()
logging.debug('Power metrics running check')
if not is_powermetrics_running():
logging.error('Powermetrics is not running. Stopping!')
local_stop_signal.set()
sleeper(local_stop_signal, interval_sec)
def optimize_DB(local_stop_signal):
while not local_stop_signal.is_set():
logging.debug("Starting DB optimization for power_measurements")
thread_conn = sqlite3.connect(DATABASE_FILE)
tc = thread_conn.cursor()
# This is for legacy systems. We just make sure that there are no values left
tc.execute('DELETE FROM measurements WHERE data IS NULL;')
one_week_ago = int(time.time() * 1000) - 7 * 24 * 60 * 60 * 1000 # Adjusted for milliseconds
aggregate_query = """
SELECT
strftime('%s', date(time / 1000, 'unixepoch')) * 1000 AS day_epoch,
SUM(combined_energy),
SUM(cpu_energy),
SUM(gpu_energy),
SUM(ane_energy),
SUM(energy_impact),
SUM(co2eq)
FROM
power_measurements
WHERE
time < ?
GROUP BY
day_epoch;
"""
tc.execute(aggregate_query, (one_week_ago,))
aggregated_data = tc.fetchall()
tc.execute("""
CREATE TEMPORARY TABLE temp_power_measurements (
time INT,
combined_energy INT,
cpu_energy INT,
gpu_energy INT,
ane_energy INT,
energy_impact INT,
co2eq FLOAT
);
""")
insert_temp_query = """
INSERT INTO temp_power_measurements (time, combined_energy, cpu_energy, gpu_energy, ane_energy, energy_impact, co2eq)
VALUES (?, ?, ?, ?, ?, ?, ?);
"""
tc.executemany(insert_temp_query, aggregated_data)
delete_query = """
DELETE FROM power_measurements WHERE time < ?;
"""
tc.execute(delete_query, (one_week_ago,))
insert_back_query = """
INSERT INTO power_measurements (time, combined_energy, cpu_energy, gpu_energy, ane_energy, energy_impact, co2eq)
SELECT * FROM temp_power_measurements;
"""
tc.execute(insert_back_query)
tc.execute("DROP TABLE temp_power_measurements;")
logging.debug("Starting DB optimization for top_processes")
# Do the same with processes
aggregate_query = """
SELECT
name,
SUM(energy_impact) AS total_energy_impact,
AVG(cputime_per) AS average_cputime_per
FROM
top_processes
WHERE
time < ?
GROUP BY
name;
"""
tc.execute(aggregate_query, (one_week_ago,))
aggregated_data = tc.fetchall()
tc.execute("""
CREATE TEMPORARY TABLE temp_top_processes (
name STRING,
total_energy_impact INT,
average_cputime_per INT
);
""")
insert_temp_query = """
INSERT INTO temp_top_processes (name, total_energy_impact, average_cputime_per)
VALUES (?, ?, ?);
"""
tc.executemany(insert_temp_query, aggregated_data)
tc.execute("DELETE FROM top_processes WHERE time < ?;", (one_week_ago,))
insert_back_query = """
INSERT INTO top_processes (time, name, energy_impact, cputime_per)
SELECT ?, name, total_energy_impact, average_cputime_per FROM temp_top_processes;
"""
tc.execute(insert_back_query, (one_week_ago,))
# Drop the temporary table
tc.execute("DROP TABLE temp_top_processes;")
thread_conn.commit()
# We vacuum to actually reduce the file size. We probably don't need to vacuum this often but I would rather
# do it here then have another thread.
tc.execute("VACUUM;")
logging.debug("Ending DB optimization")
sleeper(local_stop_signal, 3600) # We only need to optimize every hour
thread_conn.close()
def is_power_logger_running():
try:
subprocess.check_output(['pgrep', '-f', sys.argv[0]])
logging.error(f"There is already a {sys.argv[0]} process running! Maybe check launchctl?")
sys.exit(4)
except subprocess.CalledProcessError:
return False
def set_tick(local_stop_signal, stime):
while not local_stop_signal.is_set():
stime.set_tick()
sleeper(local_stop_signal, 1)
def get_settings(debug = False, test=False):
base_settings = {
'resolve_coalitions': 'com.googlecode.iterm2,com.apple.Terminal,com.vix.cron,org.alacritty',
'resolve_process': ['python'],
'daily_computer_usage_hours': 6,
'overall_usage_years': 3,
'upload_data': True,
'electricitymaps_token': None,
'powermetrics': 5000,
'upload_delta': 300,
'api_url': 'http://api.green-coding.internal:9142/v2/hog/add',
'gmt_auth_token': 'DEFAULT',
}
if test:
return {
**base_settings,
'upload_data': False,
'electricitymaps_token': 'THIS_IS_A_TEST',
}
if debug:
return {
**base_settings,
'powermetrics': 1000,
'upload_delta': 5,
}
default_settings = {
**base_settings,
'api_url': 'https://api.green-coding.io/v2/hog/add',
'gmt_auth_token': None,
}
if os.path.exists('/etc/hogger_settings.ini'):
config_path = '/etc/hogger_settings.ini'
elif os.path.exists(os.path.join(SCRIPT_DIR, 'settings.ini')):
config_path = os.path.join(SCRIPT_DIR, 'settings.ini')
else:
config_path = None
config = configparser.ConfigParser()
ret_settings = {}
if config_path:
config.read(config_path)
logging.debug(f"Using {config_path} as settings file.")
ret_settings = {
'powermetrics': int(config['DEFAULT'].get('powermetrics', default_settings['powermetrics'])),
'upload_delta': int(config['DEFAULT'].get('upload_delta', default_settings['upload_delta'])),
'api_url': config['DEFAULT'].get('api_url', default_settings['api_url']),
'upload_data': bool(config['DEFAULT'].getboolean('upload_data', default_settings['upload_data'])),
'resolve_coalitions': config['DEFAULT'].get('resolve_coalitions', default_settings['resolve_coalitions']),
'resolve_process': config['DEFAULT'].get('resolve_process', default_settings['resolve_process']),
'gmt_auth_token': config['DEFAULT'].get('gmt_auth_token', default_settings['gmt_auth_token']),
'electricitymaps_token': config['DEFAULT'].get('electricitymaps_token', default_settings['electricitymaps_token']),
'daily_computer_usage_hours': int(config['DEFAULT'].getint('daily_computer_usage_hours', default_settings['daily_computer_usage_hours'])),
'overall_usage_years': int(config['DEFAULT'].getint('overall_usage_years', default_settings['overall_usage_years'])),
}
else:
ret_settings = default_settings
if not isinstance(ret_settings['resolve_coalitions'], list):
ret_settings['resolve_coalitions'] = [x.strip().lower() for x in ret_settings['resolve_coalitions'].split(',')]
if not isinstance(ret_settings['resolve_process'], list):
ret_settings['resolve_process'] = [x.strip().lower() for x in ret_settings['resolve_process'].split(',')]
return ret_settings
if __name__ == '__main__':
parser = argparse.ArgumentParser(description=
'''
A power collection script that records a multitude of metrics and saves them to
a database. Also uploads the data to a server.
Exit codes:
1 - run as root
2 - force quit
3 - db not updated
4 - already a power_logger process is running
5 - program was forced killed because of network deadlock
''')
parser.add_argument('-d', '--dev', action='store_true', help='Enable development mode api endpoints and log level.')
parser.add_argument('-w', '--website', action='store_true', help='Shows the website URL')
parser.add_argument('-f', '--file', type=str, help='Path to the input file')
parser.add_argument('-v', '--log-level', choices=LOG_LEVELS, default='info', help='Logging level')
parser.add_argument('-o', '--output-file', type=str, help='Path to the output log file.')
parser.add_argument('-t', '--test', action='store_true', help='If this is set the program will write to the test DB.')
args = parser.parse_args()
if args.dev:
args.log_level = 'debug'
if args.test:
DATABASE_FILE = '/tmp/power_hog_test.db'
conn = sqlite3.connect(DATABASE_FILE)
c = conn.cursor()
log_level = getattr(logging, args.log_level.upper())
if args.output_file:
logging.basicConfig(filename=args.output_file, level=log_level, format='[%(levelname)s] %(asctime)s - %(message)s')
else:
logging.basicConfig(level=log_level, format='[%(levelname)s] %(asctime)s - %(message)s')
logging.debug('Program started.')
logging.debug(f"Using db: {DATABASE_FILE}")
global_settings = get_settings(args.dev, args.test)
if os.geteuid() != 0:
logging.error('The script needs to be run as root!')
sys.exit(1)
is_power_logger_running()
# Make sure that everyone can write to the DB
os.chmod(DATABASE_FILE, stat.S_IRUSR | stat.S_IWUSR |
stat.S_IRGRP | stat.S_IWGRP |
stat.S_IROTH | stat.S_IWOTH)
# Make sure the DB is migrated
caribou.upgrade(DATABASE_FILE, MIGRATIONS_PATH)
if not save_settings():
logging.debug(f"Setting: {global_settings}")
if args.website:
print('This has been discontinued. You now need to log in to the Green Metrics Tool to see the data.')
sys.exit(0)
# We need to introduce a a time holding obj as otherwise the times don't sync when the computer sleeps.
shared_time = SharedTime()
if global_settings['upload_data']:
upload_thread = threading.Thread(target=upload_data_to_endpoint, args=(stop_signal,))
upload_thread.start()
logging.debug('Upload thread started')
db_checker_thread = threading.Thread(target=check_DB, args=(stop_signal, shared_time), daemon=True)
db_checker_thread.start()
logging.debug('DB checker thread started')
ticker_thread = threading.Thread(target=set_tick, args=(stop_signal, shared_time), daemon=True)
ticker_thread.start()
logging.debug('Ticker thread started')
db_checker_thread = threading.Thread(target=optimize_DB, args=(stop_signal,), daemon=True)
db_checker_thread.start()
logging.debug('DB optimizer thread started')
run_powermetrics(stop_signal, args.file)
c.close()