Hello ArcGIS Community,
We are currently using ArcGIS Enterprise and have deployed various applications such as Dashboards and Web Maps within our organization. Our goal is to monitor user activity, specifically identifying who is logging in to view our Dashboards and how much time they are spending on these platforms.
I've explored the Organization section status, which provides some item reports; however, this information falls short of our specific requirements. We are looking for a more detailed activity log that includes user-specific details such as usernames and the duration of their sessions.
If anyone in the community has experience or insights into achieving this level of user activity logging in ArcGIS Enterprise, we would greatly appreciate your guidance. Our aim is to enhance our understanding of user engagement and optimize our applications based on this valuable information.
Thank you in advance for any assistance you can provide!
I think what you're really going to need is the logs from your web adaptor. It would take some work, but you can find the user login POST requests, then associate further activity from the same IP with that particular user. It won't give you durations, but could at least give you an idea of when that user initiates server activity or loads portal resources.
@jcarlson is correct most of the user activity is logged at the web tier.
Portal logs only record logins and not what the user is accessing eg user X opened web app Y
ArcGIS Server logs contain what services they are using (assuming they are not anonymous).
However there is no "duration" unless you built telemetry into your web apps or derived from the min/max times for service requests.
I know you stated this for just for understanding of user engagement but what your really asking for is an auditing solution.
There are auditing solutions out there - google for "arcgis enterprise Transaction Auditing"
Auditing is usually only required where you have a mandate to record all user activity eg where you have sensitive data with restricted access
Hi Thank you for your replies,
Is there any way to do like python script ? Please
Hi Trevor _Hart Thankyou for you reply,
But I need the Portal item logs, Who is watched my portal dashboard ,what time and how much time he spent.
@RamaRaomalisetti sorry you are out of luck. There are no examples or existing scripts to do that. Its quite a complex thing to achieve and as mentioned Portal does not log this (even on Verbose).