23 Aug 2023 11:46 AM - last edited on 24 Aug 2023 08:09 AM by MaciejNeumann
How to define not condition while creating in the Dashbords. my requirement is a to build a dashbord for top 50 non root file systems but i am able to create the dashboard for top 50 root file system. (how to define not condition at this place type(disk),entityName(~"root~"))
please find the attachment for your reference
Solved! Go to Solution.
23 Aug 2023 02:39 PM - edited 23 Aug 2023 02:39 PM
Hi @Ratnak , try this:
builtin:host.disk.usedPct:filter(not(in("dt.entity.disk",entitySelector("type(disk),entityName(~"/root~")")))):splitBy("dt.entity.host","dt.entity.disk"):sort(value(auto,descending)):limit(50)
Regards.
24 Aug 2023 08:27 AM
Hi,
Thanks for the solution.