- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Forum
- :
- Audit Account Activity
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Audit Account Activity
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
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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,
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
