Commit b258b5a9 by Bence Dányi

cloud: stat debug data added

parent 408c64c3
......@@ -7,7 +7,21 @@ def process_debug(req):
return {'DEBUG': DEBUG}
def process_stat(req):
stat = cache.get('cloud_stat')
if STAT_DEBUG:
stat = {
'CPU': {
'USED_CPU': 10,
'ALLOC_CPU': 20,
'FREE_CPU': 70
},
'MEM': {
'USED_MEM': 567,
'ALLOC_MEM': 371,
'FREE_MEM': 2048-567-371
}
}
else:
stat = cache.get('cloud_stat')
return {
'STAT_DEBUG': STAT_DEBUG,
'cloud_stat': stat,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment