Added CPU usage
This commit is contained in:
parent
e51a76116e
commit
2ec58e6d51
5
README
5
README
|
@ -0,0 +1,5 @@
|
||||||
|
Authors: Dan Ballard & Robert Hausch
|
||||||
|
|
||||||
|
Dependecies:
|
||||||
|
psutils 0.4.1 (PyPI)
|
||||||
|
|
15
monitor.py
15
monitor.py
|
@ -22,6 +22,8 @@
|
||||||
|
|
||||||
from socket import *
|
from socket import *
|
||||||
|
|
||||||
|
from sensors.cpu import *
|
||||||
|
|
||||||
HOST = ''
|
HOST = ''
|
||||||
PORT = 6000
|
PORT = 6000
|
||||||
ADDR = (HOST, PORT)
|
ADDR = (HOST, PORT)
|
||||||
|
@ -31,14 +33,23 @@ MAX_QUEUE = 5
|
||||||
|
|
||||||
class Stats:
|
class Stats:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.cpu_load = 50
|
self.sensors = []
|
||||||
|
self.sensors.append(cpu_monitor())
|
||||||
|
|
||||||
|
def getStats(self):
|
||||||
|
message = ''
|
||||||
|
for s in self.sensors:
|
||||||
|
s.update()
|
||||||
|
message += '{'+s.getFormatedData()+'}'
|
||||||
|
return message
|
||||||
|
|
||||||
|
|
||||||
class ClientHandler:
|
class ClientHandler:
|
||||||
def __init__(self, stats):
|
def __init__(self, stats):
|
||||||
self.stats = stats
|
self.stats = stats
|
||||||
|
|
||||||
def handle(self, sock):
|
def handle(self, sock):
|
||||||
conn_sock.send('{ cpu_load: %d}' % (self.stats.cpu_load))
|
conn_sock.send( self.stats.getStats() )
|
||||||
conn_sock.close()
|
conn_sock.close()
|
||||||
|
|
||||||
stats = Stats()
|
stats = Stats()
|
||||||
|
|
Loading…
Reference in New Issue