Need help on relevance

Hi All,

I am trying to populate the ‘Label’ information of disk to be ‘temporary storage’, ‘windows’ or ‘appinstallation’ in the existing relevance. I can get the information on the on prem servers but not from the cloud based servers. Please assist how I can modify the below existing relevance to be able to populate the disk information to be a temporary disk:-1:

(name of it & " - Size: " & ((total space of it /(1024*1024*1024)) as string & " GB") & ", Used:(" & (((total space of it - free space of it)*100/(total space of it)) as string) & "%25) " & (((total space of it - free space of it) /(1024*1024*1024)) as string & " GB") & ", Free:(" & (((free space of it)*100/(total space of it)) as string) & "%25) "& ((free space of it /(1024*1024*1024)) as string & " GB")) of drives whose(exists name of it AND exists free space of it AND exists type of it AND exists total space of it AND type of it = "DRIVE_FIXED" AND total space of it != 0 AND total space of it > 1024*1024*1024) 

Thanks.

What results are you getting from your cloud machines? If the results is empty, that implies one of your filters is excluding all of the drives.
What results do you get from retrieving each drive property, without the filtering? Try

(name of it ; total space of it as string |"no size"; free space of it as string | "no free space"; type of it | "no type") of drives

2 Likes