correction for current_time for the stats.
This commit is contained in:
		| @@ -4,7 +4,8 @@ from time import time_ns | |||||||
|  |  | ||||||
| class CPU(BaseModel): | class CPU(BaseModel): | ||||||
|     model_config = ConfigDict() |     model_config = ConfigDict() | ||||||
|     time:int = Field(default_factory=time_ns) |     current_time:int = Field(default_factory=time_ns) | ||||||
|  |     time:int = Field() | ||||||
|     user:int = Field() |     user:int = Field() | ||||||
|     system:int = Field() |     system:int = Field() | ||||||
|     count:int = Field() |     count:int = Field() | ||||||
| @@ -16,7 +17,7 @@ class DiskFlows(BaseModel): | |||||||
|  |  | ||||||
| class Disk(BaseModel): | class Disk(BaseModel): | ||||||
|     model_config = ConfigDict() |     model_config = ConfigDict() | ||||||
|     time:int = Field(default_factory=time_ns) |     current_time:int = Field(default_factory=time_ns) | ||||||
|     uuid:UUID4 = Field() |     uuid:UUID4 = Field() | ||||||
|     name:str = Field() |     name:str = Field() | ||||||
|     read:DiskFlows = Field() |     read:DiskFlows = Field() | ||||||
| @@ -28,7 +29,7 @@ class MemorySwap(BaseModel): | |||||||
|  |  | ||||||
| class Memory(BaseModel): | class Memory(BaseModel): | ||||||
|     model_config = ConfigDict() |     model_config = ConfigDict() | ||||||
|     time:int = Field() |     current_time:int = Field() | ||||||
|     available:Optional[int] = Field(default=None) |     available:Optional[int] = Field(default=None) | ||||||
|     current:int = Field() |     current:int = Field() | ||||||
|     maximum:int = Field() |     maximum:int = Field() | ||||||
| @@ -48,7 +49,7 @@ class Interface(BaseModel): | |||||||
|     model_config = ConfigDict() |     model_config = ConfigDict() | ||||||
|      |      | ||||||
|     uuid:UUID4 = Field() |     uuid:UUID4 = Field() | ||||||
|     time:int = Field(default_factory=time_ns) |     current_time:int = Field(default_factory=time_ns) | ||||||
|     name:str = Field() |     name:str = Field() | ||||||
|     rx:InterfaceFlows = Field() |     rx:InterfaceFlows = Field() | ||||||
|     tx:InterfaceFlows = Field() |     tx:InterfaceFlows = Field() | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user