Mercurial > code > home > repos > homeauto
view lib/standardservice/scalessetup.py @ 1394:b27d0f9a00ef
pinode use prettyerrorhandler
Ignore-this: 20e96013aa365fd180774ffb5b558245
darcs-hash:84bf69f522301afb1a79cb6184ae92a0fdd54017
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sat, 06 Jul 2019 00:49:12 -0700 |
parents | 2e0c4ba9d7cf |
children |
line wrap: on
line source
import time from greplin import scales from twisted.internet import task import psutil def gatherProcessStats(): procStats = scales.collection('/process', scales.DoubleStat('time'), scales.DoubleStat('cpuPercent'), scales.DoubleStat('memMb'), ) proc = psutil.Process() lastCpu = [0.] def updateTimeStat(): now = time.time() procStats.time = round(now, 3) if now - lastCpu[0] > 3: procStats.cpuPercent = round(proc.cpu_percent(), 6) # (since last call) lastCpu[0] = now procStats.memMb = round(proc.memory_info().rss / 1024 / 1024, 6) task.LoopingCall(updateTimeStat).start(.1)