587
|
1 import time
|
|
2 from greplin import scales
|
|
3 from twisted.internet import task
|
|
4 import psutil
|
|
5
|
|
6 def gatherProcessStats():
|
|
7 procStats = scales.collection('/process',
|
|
8 scales.DoubleStat('time'),
|
|
9 scales.DoubleStat('cpuPercent'),
|
|
10 scales.DoubleStat('memMb'),
|
|
11 )
|
|
12 proc = psutil.Process()
|
|
13 lastCpu = [0.]
|
|
14 def updateTimeStat():
|
|
15 now = time.time()
|
|
16 procStats.time = round(now, 3)
|
|
17 if now - lastCpu[0] > 3:
|
|
18 procStats.cpuPercent = round(proc.cpu_percent(), 6) # (since last call)
|
|
19 lastCpu[0] = now
|
|
20 procStats.memMb = round(proc.memory_info().rss / 1024 / 1024, 6)
|
|
21 task.LoopingCall(updateTimeStat).start(.1)
|