mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-09 20:51:15 +00:00
89 lines
2.7 KiB
Python
89 lines
2.7 KiB
Python
"""
|
|
Ported to Python 3.
|
|
"""
|
|
|
|
from collections import deque
|
|
from time import process_time
|
|
import time
|
|
from typing import Deque, Tuple
|
|
|
|
from twisted.application import service
|
|
from twisted.application.internet import TimerService
|
|
from zope.interface import implementer
|
|
|
|
from allmydata.util import log, dictutil
|
|
from allmydata.interfaces import IStatsProducer
|
|
|
|
@implementer(IStatsProducer)
|
|
class CPUUsageMonitor(service.MultiService):
|
|
HISTORY_LENGTH: int = 15
|
|
POLL_INTERVAL: float = 60
|
|
initial_cpu: float = 0.0
|
|
|
|
def __init__(self):
|
|
service.MultiService.__init__(self)
|
|
self.samples: Deque[Tuple[float, float]] = deque([], self.HISTORY_LENGTH + 1)
|
|
# we provide 1min, 5min, and 15min moving averages
|
|
TimerService(self.POLL_INTERVAL, self.check).setServiceParent(self)
|
|
|
|
def startService(self):
|
|
self.initial_cpu = process_time()
|
|
return super().startService()
|
|
|
|
def check(self):
|
|
now_wall = time.time()
|
|
now_cpu = process_time()
|
|
self.samples.append( (now_wall, now_cpu) )
|
|
|
|
def _average_N_minutes(self, size):
|
|
if len(self.samples) < size+1:
|
|
return None
|
|
first = -size-1
|
|
elapsed_wall = self.samples[-1][0] - self.samples[first][0]
|
|
elapsed_cpu = self.samples[-1][1] - self.samples[first][1]
|
|
fraction = elapsed_cpu / elapsed_wall
|
|
return fraction
|
|
|
|
def get_stats(self):
|
|
s = {}
|
|
avg = self._average_N_minutes(1)
|
|
if avg is not None:
|
|
s["cpu_monitor.1min_avg"] = avg
|
|
avg = self._average_N_minutes(5)
|
|
if avg is not None:
|
|
s["cpu_monitor.5min_avg"] = avg
|
|
avg = self._average_N_minutes(15)
|
|
if avg is not None:
|
|
s["cpu_monitor.15min_avg"] = avg
|
|
now_cpu = process_time()
|
|
s["cpu_monitor.total"] = now_cpu - self.initial_cpu
|
|
return s
|
|
|
|
|
|
class StatsProvider(service.MultiService):
|
|
|
|
def __init__(self, node):
|
|
service.MultiService.__init__(self)
|
|
self.node = node
|
|
|
|
self.counters = dictutil.UnicodeKeyDict()
|
|
self.stats_producers = []
|
|
self.cpu_monitor = CPUUsageMonitor()
|
|
self.cpu_monitor.setServiceParent(self)
|
|
self.register_producer(self.cpu_monitor)
|
|
|
|
def count(self, name, delta=1):
|
|
val = self.counters.setdefault(name, 0)
|
|
self.counters[name] = val + delta
|
|
|
|
def register_producer(self, stats_producer):
|
|
self.stats_producers.append(IStatsProducer(stats_producer))
|
|
|
|
def get_stats(self):
|
|
stats = {}
|
|
for sp in self.stats_producers:
|
|
stats.update(sp.get_stats())
|
|
ret = { 'counters': self.counters, 'stats': stats }
|
|
log.msg(format='get_stats() -> %(stats)s', stats=ret, level=log.NOISY)
|
|
return ret
|