mirror of
https://github.com/yavook/kiwi-simple-metrics.git
synced 2024-11-22 07:33:00 +00:00
20 lines
385 B
Python
20 lines
385 B
Python
from typing import Iterator
|
|
|
|
import psutil
|
|
|
|
from ..settings import SETTINGS
|
|
from ._report import Report, ReportData
|
|
|
|
|
|
def _hwdata() -> Iterator[ReportData]:
|
|
yield ReportData(
|
|
name=SETTINGS.cpu.name,
|
|
value=psutil.cpu_percent(interval=1),
|
|
)
|
|
|
|
|
|
def cpu() -> Report | None:
|
|
return Report.aggregate(
|
|
settings=SETTINGS.cpu,
|
|
get_data=_hwdata,
|
|
)
|