From 4b68b0b52554327d20a8fcc22550c0920d0c99d2 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Wed, 3 Sep 2025 13:02:32 -0400 Subject: [PATCH] Added custom config for OOS12000G --- hwmonDaemon.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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',