cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

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 

(2) Replies

@anhpham1652 

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,

mfranz
By Level 17 Champion
Level 17 Champion

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.