The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click here for more information.
Could I audit activity of account such as creating/deleting inventory record, creating/deleting hardware asset, etc.,?
I think there will be a place (log files, Web UI) as this post mentioned https://community.flexera.com/t5/FlexNet-Manager-Forum/Delete-an-Account/td-p/203618
Apr 19, 2022 03:58 AM
There's no consolidated account activity list that would easily provide an audit log. However, you may be able to combine the sources mentioned into something that would be sufficient for this purpose depending on your needs.
Thanks,
Apr 25, 2022 03:43 AM
If you're running FNMS on-prem, you should be able to grab that information from the ComplianceHistory table.
USE FNMSCompliance
SELECT TOP 1000 *
FROM ComplianceHistory
WHERE ComplianceHistoryTypeID IN (2)
AND UserName = 'Domain\Login'
You can filter specific actions with the ComplianceHistoryTypeID, e.g. 2 for [Delete]. For created items, you can look up the actual item, eg. via ComplianceComputerID. Obviously, in case of deteleted items, there is nothing left for a lookup, so you'll have to refer to OldValue to understand what has been deleted.
Apr 25, 2022 09:19 AM