All,
Justa quicky... Is there any way to view a log of and even automate the reporting of logins to the NPM Web page.
I would like to include username, time of login and even time of session end/log out?
Thanks in advance
Stacky
Hi Stacky--
I don't think there is a way to do this but I'll check with development and see.
Thanks,
M
Stacky,
I'm not aware of a log that shows logins and logouts. However, you can get the last login date and time from the database. It's a one line SQL query if you want to create a report. In report writer, create a new report and select Advanced SQL as the report type. Enter the following line in the box on the SQL tab:
select AccountID, LastLogin from accounts order by AccountID
Keep in mind this is just the last login time, it won't tell you when (or if) the user logged out.
You might be able to get logout time from the IIS logs, but you won't be able to pull that info into an Orion report. I haven't messed with IIS logs much, so I'm not sure what the best way to parse though those logs would be.
Hope this helps.
Kevin