-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherratic.py
executable file
·106 lines (71 loc) · 3.29 KB
/
erratic.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
#! /usr/bin/python3
# by FvH, released under Apache License v2.0
# either install 'python3-paho-mqtt' or 'pip3 install paho-mqtt'
import paho.mqtt.client as mqtt
import requests
import threading
import time
from datetime import timedelta
import socket
import sys
mqtt_server = 'mqtt.vm.nurd.space'
topic_prefix = 'GHBot/'
channels = ['nurdbottest', 'nurds', 'nurdsbofh']
prefix = '!'
def most_busy_vm(data):
vms = []
for item in data['proxmox']:
if item['type'] == "lxc" or item['type'] == "qemu" and item['status'] == "running":
vms.append({"name": item['name'], "cpu": item['cpu']})
return sorted(vms, reverse=True, key=lambda v: v['cpu'])
def get_erratic():
data = requests.get("http://10.208.30.70:8881/").json()
gpu = requests.get("http://10.208.30.24:8000/gpu").json()
return "Erratic - CPU: %s (%sc)| Load: %s, %s, %s | Uptime: %s | Mem: u:%s/a:%s (%s) | iowait: %s | GPU: %s (%s / %s) | Busiest: %s (%s) | LXCs: %s KVMs: %s" % \
(str(data['cpu']['total']) + "%", data['temps']['coretemp'][0][1], data['loadavg'][0], data['loadavg'][1], data['loadavg'][1], "{}".format(str(timedelta(seconds=data['uptime']))), data['memory']['used'], \
data['memory']['available'], str(data['memory']['percent_used']) + "%", str(data['times']['iowait']) + "%", \
gpu['nvidia_smi_log']['gpu']['utilization']['gpu_util'], gpu['nvidia_smi_log']['gpu']['temperature']['gpu_temp'], gpu['nvidia_smi_log']['gpu']['power_readings']['power_draw'], \
most_busy_vm(data)[0]['name'], str(round(most_busy_vm(data)[0]['cpu']*100, 3)) + "%", \
data['proxmox_types']['lxc'], data['proxmox_types']['qemu'])
def announce_commands(client):
target_topic = f'{topic_prefix}to/bot/register'
client.publish(target_topic, 'cmd=erratic|descr=Doorbell statistics')
def on_message(client, userdata, message):
global prefix
text = message.payload.decode('utf-8')
topic = message.topic[len(topic_prefix):]
if topic == 'from/bot/command' and text == 'register':
announce_commands(client)
return
if topic == 'from/bot/parameter/prefix':
prefix = text
return
if len(text) == 0:
return
parts = topic.split('/')
channel = parts[2] if len(parts) >= 3 else 'nurds'
nick = parts[3] if len(parts) >= 4 else 'jemoeder'
if text[0] != prefix:
return
command = text[1:].split(' ')[0]
if channel in channels or (len(channel) >= 1 and channel[0] == '\\'):
response_topic = f'{topic_prefix}to/irc/{channel}/notice'
if command == 'erratic':
client.publish(response_topic, get_erratic())
def on_connect(client, userdata, flags, rc):
client.subscribe(f'{topic_prefix}from/irc/#')
client.subscribe(f'{topic_prefix}from/bot/command')
def announce_thread(client):
while True:
try:
announce_commands(client)
time.sleep(4.1)
except Exception as e:
print(f'Failed to announce: {e}')
client = mqtt.Client(f'{socket.gethostname()}_{sys.argv[0]}', clean_session=False)
client.on_message = on_message
client.on_connect = on_connect
client.connect(mqtt_server, port=1883, keepalive=4, bind_address="")
t = threading.Thread(target=announce_thread, args=(client,))
t.start()
client.loop_forever()