Unraid version: 7.2.3 API version: 4.28.2 Hello dear Unraiders, I have simple setup of an array with one data disk and one parity drive. I wanted to obtain HDD temperature of both parity and the data disk. This query however: curl -X POST http://192.168.1.10/graphql -H "Content-Type: application/json" -H "X-API-Key: d61........x" -d '{"query": "query {
array {
disks {
name
size
status
temp
}
}
}
"}'Returns only disk1 temperature {"data":{"array":{"disks":[{"name":"disk1","size":17578328012,"status":"DISK_OK","temp":31}]}}} As I wanted to regulate an external FAN speed based on this not having all drives temperatures is an issue.... (Of course in case the HDD is sleeping, unraid should not spin-up the drive) Thanks for any suggestions