2016-10-22 19:27:28 +03:00
|
|
|
import psutil
|
2016-11-28 13:48:11 +02:00
|
|
|
import plugins
|
2016-10-22 19:27:28 +03:00
|
|
|
|
|
|
|
|
2016-11-28 13:48:11 +02:00
|
|
|
class PluginThread(plugins.PluginThreadCommon):
|
2017-12-16 01:55:28 +02:00
|
|
|
def __init__(self, config):
|
2019-03-06 10:31:39 +02:00
|
|
|
defaults = {'problem': 85}
|
|
|
|
super(PluginThread, self).__init__(config, defaults)
|
2016-10-22 19:27:28 +03:00
|
|
|
|
|
|
|
def main(self):
|
|
|
|
mem_stat = psutil.virtual_memory()
|
2019-03-06 10:31:39 +02:00
|
|
|
if mem_stat.percent > self.conf['problem']:
|
|
|
|
self.hide = False
|
|
|
|
self.status['urgent'] = True
|
|
|
|
else:
|
|
|
|
self.hide = True
|
|
|
|
self.status['urgent'] = False
|
2016-10-23 01:53:02 +03:00
|
|
|
mem_available = str(round(mem_stat.available / 2**30, 2))
|
2019-03-06 10:31:39 +02:00
|
|
|
self.status['full_text'] = 'RAM: ' + str(mem_available) + 'G'
|