-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
126 lines (106 loc) · 3.73 KB
/
client.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
import requests
import json
import socket
import time
import os
import yaml
import pynvml
with open(os.path.join(os.path.split(__file__)[0], 'config.yaml')) as f:
config = yaml.load(f)
pynvml.nvmlInit()
target = 'http://{}:{}/api/ping'.format(config['lab']['center']['ip'], config['lab']['center']['port'])
# gpu_nums = pynvml.nvmlDeviceGetCount()
# handle_list = [pynvml.nvmlDeviceGetHandleByIndex(i) for i in range(gpu_nums)]
# def get_host_ip():
# error_count = 0
# while True:
# success = False
# try:
# res = requests.get(target_ip, '')
# if res.status_code == 200:
# success = True
# myip = res.text
# return myip
# except Exception:
# pass
# if not success:
# error_count += 1
# if error_count > 3:
# print('Failed to connect 3 times, try again in 5 minutes...')
# time.sleep(5 * 60)
# continue
# else:
# error_count = 0
def get_host_ip():
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as s:
s.connect(('8.8.8.8', 80))
ip = s.getsockname()[0]
return ip
def get_gpu_info():
from gpustat import GPUStatCollection
try:
stat = GPUStatCollection.new_query().jsonify()
delete_list = []
for gpu_id, gpu in enumerate(stat['gpus']):
if type(gpu['processes']) is str:
delete_list.append(gpu_id)
continue
gpu['memory'] = round(float(gpu['memory.used']) /
float(gpu['memory.total']) * 100)
userset=set([p['username'] for p in gpu['processes']])
userset.discard('gdm')
gpu['users'] = len(userset)
gpu['usernames'] ='; '.join(list(userset))
user_process = [
'%s(%s,%sM)' % (p['username'],
p['command'], p['gpu_memory_usage'])
for p in gpu['processes']
]
gpu['user_processes'] = ' '.join(user_process)
gpu['tem_flag'] = 'bg-success'
if gpu['temperature.gpu'] > 75:
gpu['tem_flag'] = 'bg-danger'
elif gpu['temperature.gpu'] > 45:
gpu['tem_flag'] = 'bg-warning'
elif gpu['temperature.gpu'] > 30:
gpu['tem_flag'] = 'bg-info'
gpu['mem_flag'] = 'bg-success'
if gpu['memory'] > 70:
gpu['mem_flag'] = 'bg-danger'
elif gpu['memory'] > 10:
gpu['mem_flag'] = 'bg-warning'
elif gpu['memory'] > 5:
gpu['mem_flag'] = 'bg-info'
if delete_list:
for gpu_id in delete_list:
stat['gpus'].pop(gpu_id)
return stat
except Exception as e:
return {'error': '%s!' % getattr(e, 'message', str(e))}
if __name__ == "__main__":
body = {
'ip': None,
'gpu_info': {},
'_date': None}
error_count = 0
while True:
body['ip'] = get_host_ip()
body['gpu_info'] = get_gpu_info()
body['_date'] = time.strftime('%Y-%m-%d %H:%M:%S')
success = False
try:
res = requests.post(target, json.dumps(body,default=str))
if res.status_code == 200:
success = True
print('Success ping')
except Exception:
pass
if not success:
error_count += 1
if error_count > 3:
print('Failed to connect 3 times, try again in 5 minutes...')
time.sleep(5 * 60)
continue
else:
error_count = 0
time.sleep(30)