Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
pedromfreire
Partner - Contributor II
Partner - Contributor II

Authenticated User Session Logging on Qlik 12.50 April 2020 upgrade

Hello everyone,

We've notice after upgrading  QVWS to April 2020 release (12.50) a difference in Authenticated User sessions logging: Previously both "Authenticated user" and "Identifying user" fields had the same information in the log file, now only Identifying user is showing user information.

That was apparent in Governance Dashboard 2.0, as all user sessions since the upgrade were labeled "Anonymous".

Does anyone have had the same issue? Could it be related to the upgrading procedures or logging configuration?

Thank you for your help!

Best regards

Pedro Freire

 

 

 

 

 

1 Solution

Accepted Solutions
Brett_Bleess
Former Employee
Former Employee

You will find the link for the Governance Dashboard downloads in the following Help link:

https://help.qlik.com/en-US/governance-dashboard/Content/QV_GovDashboard/Getting-Started-with-the-Go...

The latest version will be there.

Regards,
Brett

To help users find verified answers, please do not forget to use the "Accept as Solution" button on any post(s) that helped you resolve your problem or question.
I now work a compressed schedule, Tuesday, Wednesday and Thursday, so those will be the days I will reply to any follow-up posts.

View solution in original post

4 Replies
haty
Contributor III
Contributor III

We are having this same issue since upgrading the QV Server to 12.50 (aka April 2020). We have the latest version of the Governance Dashboard that Qlik have released. Can anyone worked out a fix? Qlik is there a new Governance Dashboard that works with 12.50?

pedromfreire
Partner - Contributor II
Partner - Contributor II
Author

Hello Haty,

We realized that Authenticated user information was not being logged by the QVWS in the  April 2020 version but the Identifying user fieldthat in our case used to have the same information, was still showing session user id, so we managed a small workaround changing GD original script:

In the Sessions tab under SUB Sessions (fname) change the original line:

from: 

if(len([Authenticated user])>0,lower([Authenticated user]),'Anonymous') as Authenticated_User,

to:

if(len([Authenticated user])>0,lower([Authenticated user]),if (len([Identifying user])>0,lower([Identifying user]),'Anonymous')) as Authenticated_User,

Then we rebuild all the GD working QVDs and managed to read both QVWS log versions 

Please be aware if support limitation on changing GD original script.

Hope this works for you.

Best regards

PF

 

 

Brett_Bleess
Former Employee
Former Employee

You will find the link for the Governance Dashboard downloads in the following Help link:

https://help.qlik.com/en-US/governance-dashboard/Content/QV_GovDashboard/Getting-Started-with-the-Go...

The latest version will be there.

Regards,
Brett

To help users find verified answers, please do not forget to use the "Accept as Solution" button on any post(s) that helped you resolve your problem or question.
I now work a compressed schedule, Tuesday, Wednesday and Thursday, so those will be the days I will reply to any follow-up posts.
Abdul_Khalique
Contributor
Contributor

Thanks This helped