mirror of
https://github.com/yavook/kiwi-simple-metrics.git
synced 2024-11-21 23:32:59 +00:00
19 lines
316 B
Python
19 lines
316 B
Python
from typing import Callable, TypeAlias
|
|
|
|
from ._report import Report
|
|
from .cpu import cpu
|
|
from .disk import disk
|
|
from .external import external
|
|
from .memory import memory
|
|
|
|
Metric: TypeAlias = Callable[[], Report | None]
|
|
|
|
__all__ = [
|
|
"Report",
|
|
"Metric",
|
|
|
|
"cpu",
|
|
"disk",
|
|
"external",
|
|
"memory",
|
|
]
|