cancel
Showing results for 
Search instead for 
Did you mean: 

BluePrism Monitoring

Van_Grunderbeec
Level 2
Hello all, Would like to know if there is a solution to have a monitoring Live of the BluePrism. We would like to monitor all robots activities, failed robot and where it failed in the process. Status of the robot in real time, generate reports. Does BluePrism has a out of the box this kind of tools?   Thanks in advance
3 REPLIES 3

AmiBarrett
Level 12
You would need to either query the SQL DB or interface with AutomateC on each of the bots. You can get command-line documentation for AutomateC by adding /? .

Van_Grunderbeec
Level 2
Hello,   Thanks for the answer. I though there were an Add-On or plug-in to monitor the robots.   Regards

BenKirimlidis
Level 7
Below SQL query will give you a relation of items that pretty cloesely matches the control room. Recommend setting up a mirror of the PROD database BP uses and querying that instead of the live PROD tables. ------------START of SQL declare         @LoadFromDate as datetime set               @LoadFromDate = getdate();   -- gets everything from today   select                            WQI.KeyValue                   ,WQI.LastUpdated                   ,WQI.Loaded                   ,WQI.Completed                      ,WQI.Exception                            ,WQI.Deferred                        ,WQI.Worktime                       ,WQI.Data           -- Might not be needed but handy if you can extract the data and see if there is any invalid inpouts                   ,WQI.SessionID                   ,WQI.[Status]                   ,WQI.ExceptionReason from        XXXXXX.dbo.BPAWorkQueueItem as WQI with (nolock)    -- Replace XXXX with your DB name where       WQI.LastUpdated >= @LoadFromDate ;