Reputation: 419
I want to know which user is logged in currently into the ADFS. I am using Claims Provider for ADFS and through that, I am logging into ADFS. Now I want to see in ADFS that this particular user is currently logged in. Basically I want to see the user details of logged in user in ADFS
Upvotes: 0
Views: 1189
Reputation: 1
Possible create a db log.
Example:
The possible valid user session ==> authInstant.Value + tokenLifeTime > now()
Upvotes: 0
Reputation: 46
There is no as such session monitoring console on ADFS, instead there are events generated for every successfull authentication that contains claims. Also, if you want to check the entire header based interaction, please enable security logs. Also, enabling security logs is not recommended for production environment as it creates enormously large count of events for every authentication request ADFS receives.
Upvotes: 1