librenms / librenms-agent

LibreNMS Agent & Scripts
GNU General Public License v2.0
117 stars 188 forks source link

Smart: fetch the values 177, 231 and 233 as normalized instead of raw #472

Closed JamesMenetrey closed 1 year ago

JamesMenetrey commented 1 year ago

Dear LibreNMS developers,

After investigating how SMART can be monitored efficiently, I discovered that the values 177 Wear Range Delta, 231 Life Left (SSDs) and 233 Media Wearout Indicator are typically read as normalized numbers rather than interpreting their raw numbers.

While the raw value 177 defines the delta between most-worn and least-worn Flash blocks, describing how good/bad the wear levelling of the SSD works, its normalized value is a number between 100 and 0, where 100 is the best state and 0 the worst. Having this 100-0 range is way easier to set up alert rules, compared to a value where the threshold may be manufacturer dependant.

Regarding values 231 and 233, Wikipedia describes them as normalized values, except in very old disks, in which they are also referenced in other numbers. Normalizing these values will also help set up alert rules, instead of internal manufacturer numbers.

Cheers!

Sources:

VVelox commented 1 year ago

Awesome! Looks good, thanks dude!