diff --git a/deevirt_schema/libvirt/dom/stats/__init__.py b/deevirt_schema/libvirt/dom/stats/__init__.py new file mode 100644 index 0000000..3de56e8 --- /dev/null +++ b/deevirt_schema/libvirt/dom/stats/__init__.py @@ -0,0 +1,13 @@ +from time import time_ns +from typing import List +from uuid import UUID +from pydantic import BaseModel, Field + +from . import cpu, memory, disk, network + +class Stats(BaseModel): + domain:UUID + cpu:cpu.CPU + memory:memory.Memory + network:List[network.Interface] + disk:List[disk.Disk] \ No newline at end of file diff --git a/deevirt_schema/libvirt/dom/stats/__init__py b/deevirt_schema/libvirt/dom/stats/__init__py deleted file mode 100644 index e69de29..0000000