No SMART Values in PBS 2.0-14 disks GUI

mchen

Member
Dec 1, 2020
5
0
21
55
Hi all
in Disks web interface of a proxmox backup server v. 2.0-14 I see smart test passed for all disks (see attached png)

By clicking on the "Show S.M.A.R.T. values" button on the disks /dev/sda to /dev/sdf (2TB hard disk from different vendors) I can see "no S.M.A.R.T. values".
In SSD (nvme0n1 and /dev/sdb) it show all S.M.A.R.T. values.

From shell I can see smart values with smartctl command (see smartctl.txt... i tested disk sdb, sdc and sdf)

has anyone experienced the same problem?

thank you
Marco
 

Attachments

  • disks.png
    disks.png
    37.3 KB · Views: 18
  • smartctl.txt
    smartctl.txt
    5.9 KB · Views: 8
it seems that those are sas disks? they do not return conventional smart attributes as far as i can say..
currently it's not implemented to parse this format

but you can create an enhancement request on https://bugzilla.proxmox.com
best with the output of 'smartctl -H -A -j <device>' attached (thats what we try to parse)
 
  • Like
Reactions: trebuh
I have the same "issue" with SAS drives, using smartctl -H -A give some infos

Code:
smartctl -H -A -j /dev/sda
{
  "json_format_version": [
    1,
    0
  ],
  "smartctl": {
    "version": [
      7,
      2
    ],
    "svn_revision": "5155",
    "platform_info": "x86_64-linux-5.11.22-5-pve",
    "build_info": "(local build)",
    "argv": [
      "smartctl",
      "-H",
      "-A",
      "-j",
      "/dev/sda"
    ],
    "exit_status": 0
  },
  "device": {
    "name": "/dev/sda",
    "info_name": "/dev/sda",
    "type": "scsi",
    "protocol": "SCSI"
  },
  "smart_status": {
    "passed": true
  },
  "temperature": {
    "current": 30,
    "drive_trip": 65
  },
  "power_on_time": {
    "hours": 3786,
    "minutes": 11
  },
  "scsi_grown_defect_list": 0
}


would be could to have it on gui

Thanks