A new Flexera Community experience is coming on November 25th. Click here for more information.
Dear Flexera community members,
I was wondering if user information regarding the following:
Is logged or saved anywhere.
Thanks
āOct 21, 2022 02:30 AM
Hi @bleepie ,
Unfortunately user activity auditing isn't available out of the box. If you are using FNMS On-prem it may be possible to extract some information via the ComplianceHistory table as is discussed here and here.
You may also want to consider adding a feature request within the ideas portal at https://flexerasfdc.ideas.aha.io/ for increased visibility.
Regards
Vas
āOct 23, 2022 05:41 PM
Hi,
My assumption is that you mean FNMS users (called 'Accounts' in the FNMS UI)?
For FNMS users, in case you work in an on-prem environment, you can run the following SQL statement to get the date when a user has been active for the last time:
SELECT
co.ComplianceOperatorID
,co.OperatorLogin
,co.OperatorName
,co.IsEnabled
,coa.LastActive
FROM [ComplianceOperator] co
LEFT JOIN [ComplianceOperatorAudit] coa ON coa.ComplianceOperatorID = co.[ComplianceOperatorID]
There is a very comprehensive KB article on how usage (user activity) data can be collected using the Flexera agent, too.
āOct 24, 2022 05:27 AM