add hours of use

This commit is contained in:
Cayo Puigdefabregas 2024-10-21 13:27:45 +02:00
parent 6e4bb3729f
commit 4bb71adf00
1 changed files with 2 additions and 0 deletions

View File

@ -160,6 +160,7 @@ class ParseSnapshot:
continue
model = sm.get('model_name')
manufacturer = None
hours = sm.get("power_on_time", {}).get("hours", 0)
if model and len(model.split(" ")) > 1:
mm = model.split(" ")
model = mm[-1]
@ -175,6 +176,7 @@ class ParseSnapshot:
"size": self.get_data_storage_size(sm),
"variant": sm.get("firmware_version"),
"interface": self.get_data_storage_interface(sm),
"hours": hours,
}
)