cancel
Showing results for 
Search instead for 
Did you mean: 

Blueprism Resource Available

ChandanRaju
Level 3
Hello,

Is it possible to find out which resource is free at the moment by a BOT maybe using some commands in command prompt or any other way to find out available resources in a environment.

Thanks

------------------------------
Chandan Raju
------------------------------
2 REPLIES 2

George_MihaiBit
Level 2
Hello,

Here is a nonformal solution.

If you have access to the database you can connect and run a query on the bparesource table.

Select * from bparesource where processesrunning>0 or actionsrunning>0 -> Gives you all the connected machines that have something running on them.
Select * from bparesource where processesrunning0= or actionsrunning=0 -> Gives you all the connected machines that are idle.

Regards,

------------------------------
George Mihai Bitlan
Software Application Senior Analyst
Accenture
Europe/Bucharest
------------------------------

Another possible solution is which I've had to use (the values in BPAResource don't seem to update when our robots are running processes) is to check the status via the http interface. http://robotname:8181/busy will return a plain-text response of "yes" or "no".

------------------------------
Nicholas Zejdlik
RPA Developer
------------------------------