We have two HPE servers with moderately old disks (
Now that we know these disks are old, we don't want to continue to receive daily notification for this specific ID.
According to
Here is our
But we still get notified every 24h!
I saw other have the same problem: SMART error e-mails on PAST temperature issue
Did anybody happen to make this working?
Power_On_Hours
> 10K hours) which are reporting Offline uncorrectable sectors
(Smart ID 198
). Therefore, we get daily notifications by email (SMART error (OfflineUncorrectableSector) detected on host:
).Now that we know these disks are old, we don't want to continue to receive daily notification for this specific ID.
According to
smartd.conf
's manual, options -i
and -I
should be used:-i ID [ATA only] Ignore device Attribute number ID when checking for failure of
Usage Attributes. ID must be a decimal integer in the range from 1 to 255.
This Directive modifies the behavior of the '-f' Directive and has no ef‐
fect without it.
This is useful, for example, if you have a very old disk and don't want to
keep getting messages about the hours-on-lifetime Attribute (usually Attri‐
bute 9) failing. This Directive may appear multiple times for a single de‐
vice, if you want to ignore multiple Attributes.
-I ID [ATA only] Ignore device Attribute ID when tracking changes in the Attri‐
bute values. ID must be a decimal integer in the range from 1 to 255.
This Directive modifies the behavior of the '-p', '-u', and '-t' tracking
Directives and has no effect without one of them.
This is useful, for example, if one of the device Attributes is the disk
temperature (usually Attribute 194 or 231). It's annoying to get reports
each time the temperature changes. This Directive may appear multiple
times for a single device, if you want to ignore multiple Attributes.
Here is our
smartd.conf
(we tried both -I
and -i
):
Code:
DEFAULT -n standby -m root -M exec /usr/share/smartmontools/smartd-runner
/dev/sda -i 198
/dev/sdb -i 198
/dev/sdc -i 198
/dev/sdd -i 198
/dev/sde -i 198
/dev/sdf -i 198
/dev/sdg -i 198
DEVICESCAN -d removable
But we still get notified every 24h!
I saw other have the same problem: SMART error e-mails on PAST temperature issue
Did anybody happen to make this working?