mirror of
https://github.com/yavook/kiwi-simple-metrics.git
synced 2024-11-21 23:32:59 +00:00
13 lines
197 B
Python
13 lines
197 B
Python
from . import metrics
|
|
|
|
|
|
def main() -> None:
|
|
print(metrics.Report.concat(
|
|
metrics.cpu(),
|
|
metrics.memory(),
|
|
metrics.disk(),
|
|
))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|