09-26-2024 04:32 PM
My discussion is a wish to add capabilities for "Dynamic Asset Groups" to filter "Linux OS" like we can do with "Windows OS".
Until Windows OS, we actually just can have a dynamic result for entire Linux asset type. With over thousand Linux assets (and some that are badly detected as Linux). We very appreciated if we could have a new filter un Linux OS field to have a better inventory overview like "Linux OS LKE: Debian, Red Hat, CentOS, etc."
09-30-2024 03:31 PM
@Glenn_Gagne thanks sharing this idea.
I've created an an internal product improvement.
Meanwhile you can create a custom report to have your inventory overview using this SQL query:
Select Top 1000000 tblLinuxSystem.OSRelease As OS,
Count(tblLinuxSystem.OSRelease) As Count
From tblassets
Inner Join tblassetcustom On tblassets.AssetID = tblassetcustom.AssetID
Inner Join tsysassettypes On tsysassettypes.AssetType = tblassets.Assettype
Inner Join tblLinuxBios On tblassets.AssetID = tblLinuxBios.AssetID
Inner Join tblLinuxSystem On tblassets.AssetID = tblLinuxSystem.AssetID
Group By tblLinuxSystem.OSRelease
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now