Log connected users?

Hello,

Is there anyway to log the IP address of the visiting machine, and access other web server type logs? I am interested in capturing things like, the number of users currently visiting the dashboard, and how long they are connected. As well as the IP of the connecting device.

Thanks!
Guy

There isn’t a great way to do this now. I would suggest opening an issue for it. I really like the idea!

Will do, @adam.

Thanks,
guy

$Request.HttpContext.Connection.RemoteIPAddress.ToString()

That will give you the IP Address of the remote machine.

4 Likes

@Jacob-Evans Thanks!