Hi,
From BP Control room interface:
1. you can group resources in some meaningful for you folder three
2. use sorting by state (just click on it) to see different sorts by it
also you can use several workarounds depending on what rights and your preferences you have:
1. get statuses from Blue Prism database. Sql would look something like :
SELECT
RAT.AttributeName As Attribute
,[name]
,[FQDN]
,[DisplayStatus]
,RES.[statusid]
,STA.[description]
,STA.[type]
,[processesrunning]
,[actionsrunning]
,[unitsallocated]
,[lastupdated]
,[diagnostics]
,[userID]
FROM [dbo].[BPAResource] RES
left outer join [dbo].[BPAResourceAttribute] RAT on RES.AttributeID = RAT.AttributeID
left outer join [dbo].[BPAStatus] STA on RES.statusid = STA.statusid
where [DisplayStatus] is not null
order by [name]
and then you can check which resources were updated a long time ago ([lastupdated] and status according status table values and react
2:
create a script with say powershell to go trough resources API's. Links:
http://{resource FQDN}:{port}/status
and check both ports (LoginAgent and resource when logged in) - what answers they give and go from there
------------------------------
Mindaugas Breskus
Software engineer
Swedbank
Europe/Vilnius
------------------------------