Hello All,
Is there a way to filter all Disks with Disk Used % > 90 from Data Explorer?
I tried the below, but it throws an error that referenced key doesn't exist.
builtin:host.disk.usedPct:filter(eq("builtin:host.disk.usedPct",90)):splitBy():sort(value(auto,descending)):limit(20)
Thanks
Solved! Go to Solution.
Hi @dineshraj
Try this one:
builtin:host.disk.usedPct
:filter(series(avg,gt,90))
:splitBy("dt.entity.host","dt.entity.disk")
:avg
:sort(value(avg,descending))
I hope it helps.
Best regards,
Mizső
Featured Posts