July 2, 20242 yr What does "Enable NVME power monitoring" do? Found in global disk settings. Toggling Help doesn't provide any context. Google fu fails me.
July 7, 20242 yr On 7/2/2024 at 5:15 PM, interwebtech said: What does "Enable NVME power monitoring" do? Found in global disk settings. Toggling Help doesn't provide any context. Google fu fails me. Where is this option? I don't see it. I'm using 6.12.10.
July 7, 20242 yr Community Expert 19 minutes ago, PetabyteLDA said: Where is this option? I don't see it. I'm using 6.12.10. Its a 7.0.0 feature enable is in global disk settings. nvme command was added to 6.12.10 if you what to run manually or script.
July 7, 20242 yr Community Expert Command options used in 7 wc and cc are warning critical temps, case 'temp': exec("nvme id-ctrl /dev/$device 2>/dev/null | grep -Pom2 '^[wc]ctemp +: \K\d+'",$temp); return [$temp[0]-273, $temp[1]-273]; case 'cctemp': return exec("nvme id-ctrl /dev/$device 2>/dev/null | grep -Pom1 '^cctemp +: \K\d+'")-273; case 'wctemp': return exec("nvme id-ctrl /dev/$device 2>/dev/null | grep -Pom1 '^wctemp +: \K\d+'")-273; case 'state': $state = exec("nvme get-feature /dev/$device -f2 2>/dev/null | grep -Pom1 'value:.+\K.$'"); return exec("nvme id-ctrl /dev/$device 2>/dev/null | grep -Pom1 '^ps +$state : mp:\K\S+ \S+'"); case 'power': $state = exec("nvme get-feature /dev/$device -f2 2>/dev/null | grep -Pom1 'value:.+\K.$'"); return exec("smartctl -c /dev/$device 2>/dev/null | grep -Pom1 '^ *$state [+-] +\K[^W]+'"); }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.