view lib/standardservice/scalessetup.py @ 1489:a4fb4cc60ae1

get some iot2 tests going Ignore-this: cdfdf88f445f043aa5aa55f737f6b776 darcs-hash:f0dc8fe99648fd4f7a3870c2b564ae1e4c85fdd9
author drewp <drewp@bigasterisk.com>
date Tue, 21 Jan 2020 23:59:45 -0800
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)