No Disk IO graphs

Harun

Active Member
Sep 26, 2013
10
0
41
Hi!

Empty graph when using scsi device. When I use other devices (ide, sata, virtio), there is no problem. The problem is in versions 3.x, 4.x, 5.x. Anyone having a similar problem? Any potential solutions?

SCSI disk:
proxmox1.png

VIRTIO disk:
proxmox2.png
 
In the file /usr/share/perl5/PVE/QemuServer.pm find this:
if($path =~ m/^iscsi\:\/\//){
$devicetype = 'generic';
}
and change it to this
if($path =~ m/^iscsi\:\/\//){
$devicetype = 'block';
}
After this change:
systemctl restart pvedaemon.service
systemctl restart pveproxy.service
systemctl restart pvestatd.service

I have made this change for several years now whenever the package qemu-server is updated.