Compare commits

...

2 Commits

Author SHA1 Message Date
Mickael BOURNEUF 0112e771e7 update dom stats 2024-10-23 12:37:03 +02:00
Mickael BOURNEUF 0b697d7a61 update stats dom 2024-10-23 12:36:40 +02:00
3 changed files with 14 additions and 1 deletions

View File

@ -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]

View File

@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup(
name='deevirt_schema',
version='0.1.1',
version='0.1.2',
description='Deevirt Schema',
url='https://git.celeonet.fr/Deevirt/deevirt_schema.git',
author='Celeonet',