cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Filter all disks with greater than 90 Disk used %

dineshraj
Visitor

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

2 REPLIES 2

Mizső
DynaMight Leader
DynaMight Leader

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ő

Dynatrace Community RockStar 2024, Certified Dynatrace Professional

dineshraj
Visitor

Works like a charm!! Thanks @Mizső 

Featured Posts