how to see how many have logged in servicenow for a period of 6 months
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2017 06:46 AM
I have to see every day how many users are logging in with respective of every minute. for a period of 6 months
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2017 06:52 AM
Hi Hari,
You can check the events logs with event name as 'login'. The Parm 1 column gives you the user Id who had logged in. This will give you a data for last 30 days (depending on how many days you store these logs)
You can also run query on last login time on user profile
Thanks
Please Hit like, Helpful or Correct depending on the impact of the response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2017 06:52 AM
Hi Hari,
Run report on Sys_user table and add filter condition as login last 6 Months.
You will get all users who logged in.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2017 07:16 AM
I do not want last login time. I need to know how many users are logging at a particular time
i want last 6 months data
Sample of data:
- 05 represents 5 a.m morning
- Next two column represents minutes and seconds respectively
- Last column represents the no of users logged in that particular time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2017 07:24 AM
You can check the events logs with event name as 'login'. The Parm 1 column gives you the user Id who had logged in. This will give you a data for last 30 days (depending on how many days you store these logs).
This is what system provides oob and the data will depend on how long the logs are maintained. If you need something else you should try custom logging on this event.
Thanks
Please Hit like, Helpful or Correct depending on the impact of the response.