diff --git a/hwmonDaemon.py b/hwmonDaemon.py index 54f5fbe..b0b0e01 100644 --- a/hwmonDaemon.py +++ b/hwmonDaemon.py @@ -172,6 +172,25 @@ class SystemHealthMonitor: } } }, + 'OOS': { + 'aliases': ['OOS12000G', 'OOS'], + 'attributes': { + # These drives seem to report very high error rates normally + 'Raw_Read_Error_Rate': { + 'monitor': False, # Skip monitoring - seems to be a counter + 'description': 'OOS drives report high values normally' + }, + 'Seek_Error_Rate': { + 'monitor': False, # Skip monitoring - seems to be a counter + 'description': 'OOS drives report high values normally' + }, + 'Command_Timeout': { + 'warning_threshold': 100000000000, # 100 billion + 'critical_threshold': 200000000000, # 200 billion + 'description': 'OOS drives report very high timeout counters' + } + } + }, 'Samsung': { 'aliases': ['Samsung', 'SAMSUNG'], 'wear_leveling_behavior': 'countup',