<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic BluePrism Monitoring in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45125#M1425</link>
    <description>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?

&amp;nbsp;

Thanks in advance</description>
    <pubDate>Wed, 13 Mar 2019 14:14:00 GMT</pubDate>
    <dc:creator>Van_Grunderbeec</dc:creator>
    <dc:date>2019-03-13T14:14:00Z</dc:date>
    <item>
      <title>BluePrism Monitoring</title>
      <link>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45125#M1425</link>
      <description>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?

&amp;nbsp;

Thanks in advance</description>
      <pubDate>Wed, 13 Mar 2019 14:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45125#M1425</guid>
      <dc:creator>Van_Grunderbeec</dc:creator>
      <dc:date>2019-03-13T14:14:00Z</dc:date>
    </item>
    <item>
      <title>You would need to either…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45126#M1426</link>
      <description>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 /? .</description>
      <pubDate>Wed, 13 Mar 2019 22:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45126#M1426</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2019-03-13T22:39:00Z</dc:date>
    </item>
    <item>
      <title>Hello,
 
Thanks for the…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45127#M1427</link>
      <description>Hello,
&amp;nbsp;
Thanks for the answer.
I though there were an Add-On or plug-in to monitor the robots.
&amp;nbsp;
Regards</description>
      <pubDate>Wed, 03 Apr 2019 12:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45127#M1427</guid>
      <dc:creator>Van_Grunderbeec</dc:creator>
      <dc:date>2019-04-03T12:59:00Z</dc:date>
    </item>
    <item>
      <title>Below SQL query will give…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45128#M1428</link>
      <description>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&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@LoadFromDate as datetime
set&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @LoadFromDate = getdate();&amp;nbsp;&amp;nbsp; -- gets everything from today
&amp;nbsp;
select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WQI.KeyValue
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.LastUpdated
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.Loaded
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.Completed&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.Exception&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.Deferred&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.Worktime&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.Data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Might not be needed but handy if you can extract the data and see if there is any invalid inpouts
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.SessionID
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.[Status]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,WQI.ExceptionReason
from&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XXXXXX.dbo.BPAWorkQueueItem as WQI with (nolock)&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Replace XXXX with your DB name
where&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WQI.LastUpdated &amp;gt;= @LoadFromDate
;</description>
      <pubDate>Tue, 09 Apr 2019 14:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/BluePrism-Monitoring/m-p/45128#M1428</guid>
      <dc:creator>BenKirimlidis</dc:creator>
      <dc:date>2019-04-09T14:50:00Z</dc:date>
    </item>
  </channel>
</rss>

