The report below lists all Linux assets where less than 10% of a partition is free
The report will only list assets that meet all of the following criteria:
- The asset state is set to "active".
 
- The asset has been successfully scanned at least once.
 
- The asset is a Linux machine.
 
- The asset has less than 10% disk space on one partition.
 
Select Top 1000000 tblAssets.AssetID,
  tblAssets.AssetName,
  tblAssets.Domain,
  tsysAssetTypes.AssetTypeIcon10 As icon,
  tblAssets.IPAddress,
  tsysIPLocations.IPLocation,
  tblAssetCustom.Manufacturer,
  tblAssetCustom.Model,
  tblLinuxSystem.OSRelease,
  tblAssets.Lastseen,
  tblAssets.Lasttried,
  tblLinuxHardDisks.Filesystem,
  tblLinuxHardDisks.Size,
  tblLinuxHardDisks.Used,
  tblLinuxHardDisks.Percentage As SpaceUsed,
  tblLinuxHardDisks.MountedOn As MountedOn
From tblAssets
  Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
  Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
  Inner Join tsysIPLocations On tsysIPLocations.LocationID =
    tblAssets.LocationID
  Inner Join tblState On tblState.State = tblAssetCustom.State
  Inner Join tblLinuxSystem On tblLinuxSystem.AssetID = tblAssets.AssetID
  Inner Join tblLinuxHardDisks On tblLinuxHardDisks.AssetID = tblAssets.AssetID
Where tblState.Statename = 'Active' And Replace(tblLinuxHardDisks.Percentage,
  '%', '') > 90
Order By tblAssets.IPNumeric,
  tblAssets.AssetName