]> git.proxmox.com Git - pve-storage.git/commitdiff
Diskmanage: extend wearout detection for SAS disk
authorDominik Csapak <d.csapak@proxmox.com>
Fri, 11 Dec 2020 13:52:41 +0000 (14:52 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 15 Dec 2020 13:42:16 +0000 (14:42 +0100)
for some controllers/disks there the line is
Percentage used endurance indicator: x%

so extend the regex for that possibilty.
We even had a test-case for SAS but did not notice we could extract
that info from there...

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
PVE/Diskmanage.pm
test/disk_tests/sas/sda_smart_expected.json
test/disk_tests/sas_ssd/disklist_expected.json
test/disk_tests/sas_ssd/sda_smart_expected.json

index a46cc739225efa24e6667ed2c8b28acb90ed0978..116a99a8e9037515ce340df21f45c2692ee18168 100644 (file)
@@ -134,8 +134,8 @@ sub get_smart_data {
            } elsif (defined($type) && $type eq 'text') {
                $smartdata->{text} = '' if !defined $smartdata->{text};
                $smartdata->{text} .= "$line\n";
-               # extract wearout from nvme text, allow for decimal values
-               if ($line =~ m/Percentage Used:\s*(\d+(?:\.\d+)?)\%/i) {
+               # extract wearout from nvme/sas text, allow for decimal values
+               if ($line =~ m/Percentage Used(?: endurance indicator)?:\s*(\d+(?:\.\d+)?)\%/i) {
                    $smartdata->{wearout} = 100 - $1;
                }
            } elsif ($line =~ m/SMART Disabled/) {
index e096c8b49c7683178346f39aeae832398ccde21b..29643722298aec2c7dd67e0517ad5b27a145cbcf 100644 (file)
@@ -1,5 +1,6 @@
 {
     "health" : "OK",
     "text" : "\nPercentage used endurance indicator: 0%\nCurrent Drive Temperature:     20 C\nDrive Trip Temperature:        70 C\n\nManufactured in week 47 of year 2012\nSpecified cycle count over device lifetime:  0\nAccumulated start-stop cycles:  0\nSpecified load-unload count over device lifetime:  0\nAccumulated load-unload cycles:  0\nElements in grown defect list: 0\n\nVendor (Seagate) cache information\n  Blocks sent to initiator = 1286675833552896\n\nVendor (Seagate/Hitachi) factory information\n  number of hours powered up = 7127.12\n  number of minutes until next internal SMART test = 0\n",
-    "type" : "text"
+    "type" : "text",
+    "wearout": 100
 }
index 9e7ada36bc5fc588ba086d18ba17a78791f524c0..dd9b748dc44c5b7ad81acee9edd3ae99672ffe64 100644 (file)
@@ -11,7 +11,7 @@
        "rpm" : 0,
        "size" : 5120000,
        "serial" : "SER2",
-       "wearout" : "N/A",
+       "wearout" : 100,
        "by_id_link" : "/dev/disk/by-id/scsi-00000000000000000"
     }
 }
index e096c8b49c7683178346f39aeae832398ccde21b..29643722298aec2c7dd67e0517ad5b27a145cbcf 100644 (file)
@@ -1,5 +1,6 @@
 {
     "health" : "OK",
     "text" : "\nPercentage used endurance indicator: 0%\nCurrent Drive Temperature:     20 C\nDrive Trip Temperature:        70 C\n\nManufactured in week 47 of year 2012\nSpecified cycle count over device lifetime:  0\nAccumulated start-stop cycles:  0\nSpecified load-unload count over device lifetime:  0\nAccumulated load-unload cycles:  0\nElements in grown defect list: 0\n\nVendor (Seagate) cache information\n  Blocks sent to initiator = 1286675833552896\n\nVendor (Seagate/Hitachi) factory information\n  number of hours powered up = 7127.12\n  number of minutes until next internal SMART test = 0\n",
-    "type" : "text"
+    "type" : "text",
+    "wearout": 100
 }