BluePrism Monitoring
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-03-19 02:14 PM
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-03-19 10:39 PM
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 /? .
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-04-19 01:59 PM
Hello,
Thanks for the answer.
I though there were an Add-On or plug-in to monitor the robots.
Regards
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-04-19 03:50 PM
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
;
