currently logged on users
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-08-19 09:50 AM
Is there a way to find out who is currently logged on in Blue Prism?
I know this can be queried via WS interface (http://localhost:8181/connections) but this does not work in SSO environments.
And I cannot find some equivalent comment for automate or automateC.
Thanks
------------------------------
Walter Koller
Solution Manager
Erste Group IT International GmbH
Europe/Vienna
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-08-19 02:56 AM
If the working environment is based on the SSO, then you could use the following Windows native command remotely to find out currently logged on user of the Blue Prism.
query user /server:MyRuntimeResource01
------------------------------
Jega Avinasinathan
Customer Support Engineer
Blue Prism
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-08-19 08:49 AM
thanks for the command, this will come definitely handy when one of our VDI is blocked again 🙂
Unfortunately it does only show local sessions of the /server but not who is generally logged on to Blue Prism application server
------------------------------
Walter Koller
Solution Manager
Erste Group IT International GmbH
Europe/Vienna
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
23-08-19 07:40 AM
/Joakim
------------------------------
Joakim Eklund
Senior RPA Developer
Swedbank AB
Europe/Stockholm
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
25-08-19 05:33 PM
It would be great if there something in the Control Room to make this easy -- screen to see the list of logged in users. Anyway, I like the Audit Log suggestion Joakim. While it would be tedious to use the Blue Prism client to view the audit log information about the logged in users, the querying of the BPAAuditEvents is easy.
------------------------------
Brenton Westwood
Systems Analyst
Southern Company
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-09-19 11:24 AM
I can see several login events for some users but no logout event.
btw. the events might also be filtered by column sCode:
L001 = 'logged into'
L002 = 'logged out'
------------------------------
Walter Koller
Solution Manager
Erste Group IT International GmbH
Europe/Vienna
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
16-09-19 12:10 PM
Hi,
login event without logouts IMO means Blue Prism app crashes when user is logged in.
We are using this kind of select to determine possible logged in users (PossiblyLoggedIN > 0 - most probably user is logged in)
-- change this
use yourBPdatabaseName;
-- using last two days login data
declare @EvDate as date
set @EvDate = GetDate()-2
SELECT
USR.username
, EvLogin = (SELECT COUNT(A.[eventid]) from [dbo].[BPAAuditEvents] A where A.gSrcUserID = USR.userid And a.sCode = 'L001' and a.eventdatetime > @EvDate)
, EvLogout = (SELECT COUNT(A.[eventid]) from [dbo].[BPAAuditEvents] A where A.gSrcUserID = USR.userid And a.sCode = 'L002'and a.eventdatetime > @EvDate)
, PossiblyLoggedIN = (SELECT COUNT(A.[eventid]) from [dbo].[BPAAuditEvents] A where A.gSrcUserID = USR.userid And a.sCode = 'L001' and a.eventdatetime > @EvDate) - (SELECT COUNT(A.[eventid]) from [dbo].[BPAAuditEvents] A where A.gSrcUserID = USR.userid And a.sCode = 'L002'and a.eventdatetime > @EvDate)
FROM [dbo].[BPAUser] USR
where username is not null
------------------------------
Mindaugas Breskus
Software engineer
Swedbank
Europe/Vilnius
------------------------------
