<?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 RE: How to Identify Offline Bots in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64392#M17176</link>
    <description>Hi,&lt;BR /&gt;I think you can use 'DML Trigger', which is the default function of SQL Server.&lt;BR /&gt;This function works when a record in the specified table is updated, deleted, or inserted.&lt;BR /&gt;If you combine this and Database Mail, the notification mail could be send without any other tools when resource PCs becomes offline.&lt;BR /&gt;&lt;BR /&gt;References(MS Documentation):&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/relational-databases/triggers/dml-triggers?view=sql-server-ver15" target="_blank" rel="noopener"&gt;DML Triggers&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/relational-databases/database-mail/configure-sql-server-agent-mail-to-use-database-mail?view=sql-server-ver15" target="_blank" rel="noopener"&gt;Configure SQL Server Agent Mail to Use Database Mail&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I hope you will find it helpful &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kota Suto&lt;BR /&gt;Japan&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 02 Mar 2021 02:02:00 GMT</pubDate>
    <dc:creator>KotaSuto1</dc:creator>
    <dc:date>2021-03-02T02:02:00Z</dc:date>
    <item>
      <title>How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64389#M17173</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;My bots are working fine in Production. Some times, may be once in a week one of the bots are going for offline state because of certain reasons like server. We are solving the issue during working hours by logging into VM. &lt;BR /&gt;I want to know is there any Option in Blue Prism and any other tool which sends us an email when the Bots go Offline. So that we can immediately take action on the issue during weekend or non working hours.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;VINOD&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Mar 2021 05:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64389#M17173</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-03-01T05:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64390#M17174</link>
      <description>Best way I've found is making an http call to the robot. If it replies, it's online. You can do that through Blue Prism itself using the Utility - HTTP object, or from external code. As far as I know, Blue Prism doesn't have anything built in for this. It makes sense that it can't monitor itself for whether or not it's online. I think if they did implement some kind of alert for that, it would have to be through the Blue Prism server application.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nicholas Zejdlik&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Mar 2021 15:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64390#M17174</guid>
      <dc:creator>NicholasZejdlik</dc:creator>
      <dc:date>2021-03-01T15:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64391#M17175</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;You can see status information of each RR in the "BPAResource" table in DB.&lt;BR /&gt;I use PowerBI to create a dashboard to see the table, and put it on the Microsoft Teams tab.&lt;BR /&gt;This way is easy to create and monitor, and it is not difficult to send notifications to my PC by mail,&amp;nbsp; Teams notice and so on.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mitsuko &lt;BR /&gt;Asia/Tokyo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 01:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64391#M17175</guid>
      <dc:creator>sumire</dc:creator>
      <dc:date>2021-03-02T01:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64392#M17176</link>
      <description>Hi,&lt;BR /&gt;I think you can use 'DML Trigger', which is the default function of SQL Server.&lt;BR /&gt;This function works when a record in the specified table is updated, deleted, or inserted.&lt;BR /&gt;If you combine this and Database Mail, the notification mail could be send without any other tools when resource PCs becomes offline.&lt;BR /&gt;&lt;BR /&gt;References(MS Documentation):&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/relational-databases/triggers/dml-triggers?view=sql-server-ver15" target="_blank" rel="noopener"&gt;DML Triggers&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/relational-databases/database-mail/configure-sql-server-agent-mail-to-use-database-mail?view=sql-server-ver15" target="_blank" rel="noopener"&gt;Configure SQL Server Agent Mail to Use Database Mail&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I hope you will find it helpful &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kota Suto&lt;BR /&gt;Japan&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 02:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64392#M17176</guid>
      <dc:creator>KotaSuto1</dc:creator>
      <dc:date>2021-03-02T02:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64393#M17177</link>
      <description>Hi Nicholas,&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;can you specify what are the inputs I have to provide to call robot using http utility.&lt;BR /&gt;what can be address url - is it IP address of VM?&lt;BR /&gt;what could be body, content type and method to call a Bot?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 04:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64393#M17177</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-03-02T04:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64394#M17178</link>
      <description>Hi Mitsuko,&lt;BR /&gt;&lt;BR /&gt;Can you specify the exact query to fetch &lt;SPAN&gt;"BPAResource" table in DB. by using data sql server vbo?&lt;BR /&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 04:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64394#M17178</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-03-02T04:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64395#M17179</link>
      <description>&lt;P&gt;Hi vinod,&lt;BR /&gt;&lt;BR /&gt;No, I don't mean to use SQL or VBO.&lt;BR /&gt;I use Microsoft PowerBI, and I specify DB directly in PowerBI.&lt;/P&gt;
&lt;P&gt;You can use DB tables in PowerBI in similar way that you use tables in Microsoft Access. Just try PowerBI.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mitsuko &lt;BR /&gt;Asia/Tokyo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 06:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64395#M17179</guid>
      <dc:creator>sumire</dc:creator>
      <dc:date>2021-03-02T06:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64396#M17180</link>
      <description>Vinod check out the Help at &lt;EM&gt;&lt;A href="https://bpdocs.blueprism.com/bp-6-10/en-us/helpUserInterface.htm?TocPath=Interface%7C_____0" class="MCBreadcrumbsLink" target="_blank" rel="noopener"&gt;Interface&lt;/A&gt;&lt;SPAN class="MCBreadcrumbsDivider"&gt;&amp;nbsp;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://bpdocs.blueprism.com/bp-6-10/en-us/helpAdvanced.htm?TocPath=Interface%7CAdvanced%20options%7C_____0" class="MCBreadcrumbsLink" target="_blank" rel="noopener"&gt;Advanced options&lt;/A&gt;&lt;SPAN class="MCBreadcrumbsDivider"&gt;&amp;nbsp;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="MCBreadcrumbsSelf"&gt;Resource PC commands &lt;/SPAN&gt;&lt;/EM&gt;for a description of the HTTP API. Typically you'd use the machine name (or IP) something like this.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://PC123456:8181/user%20name%20MyUserName%20&amp;amp;password%20MyPassword&amp;amp;ping" target="test_blank"&gt;http://PC123456:8181/user%20name%20MyUserName%20&amp;amp;password%20MyPassword&amp;amp;ping&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Note that the above is using native auth and the ampersand is used to combine the user name, password and ping commands as one.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Carter&lt;BR /&gt;Professional Services&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 08:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64396#M17180</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2021-03-02T08:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64397#M17181</link>
      <description>Hi John,&amp;nbsp;&lt;BR /&gt;Thanks for your response. I think for calling a process, first we need to expose it to as Webservice. I remember few months ago, we have created a process and exposed as web service, then called using http request, but we have received an error like it is not able to recognize or not able to connect IP.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 09:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64397#M17181</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-03-02T09:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64398#M17182</link>
      <description>Hi Mitsuko,&lt;BR /&gt;Thanks for the reply. I don't have any knowledge on PowerBI and we dont have any person in our company who works on PowerBI.&amp;nbsp;&lt;BR /&gt;Can I use any trial version or should I go with premium one.?&amp;nbsp; can you suggest in which VM/machine we need to install in order to read DB tables/data.?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 09:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64398#M17182</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-03-02T09:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64399#M17183</link>
      <description>&lt;P&gt;Hi vinod,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Here is link. I use free ver of PowerBI. Even with the free version, I don't have any trouble with functionality.&lt;BR /&gt;&lt;A href="https://powerbi.microsoft.com/" target="_blank" rel="noopener"&gt;https://powerbi.microsoft.com/&lt;/A&gt;&lt;BR /&gt;I installed it on my windows10 PC. Any windows machine is OK if it can reference the Blue Prism DB.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is link to guides and documents.&lt;BR /&gt;&lt;A href="https://powerbi.microsoft.com/learning/" target="test_blank"&gt;https://powerbi.microsoft.com/learning/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I believe that PowerBI and Blue Prism DB are a good match.&lt;/P&gt;
&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mitsuko &lt;BR /&gt;Asia/Tokyo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Mar 2021 10:56:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64399#M17183</guid>
      <dc:creator>sumire</dc:creator>
      <dc:date>2021-03-02T10:56:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to Identify Offline Bots</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64400#M17184</link>
      <description>Hi Vinod,&lt;BR /&gt;&lt;BR /&gt;As ​"BPAResource" table in DB holds each RR details including status. &lt;BR /&gt;You can write python script to extract RR status detail and send mail in the same script.&lt;BR /&gt;And the script can be scheduled as per required frequency.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Devendra Singh Rawat&lt;BR /&gt;Solution Architect&lt;BR /&gt;Ericsson&lt;BR /&gt;India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Mar 2021 16:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Identify-Offline-Bots/m-p/64400#M17184</guid>
      <dc:creator>DevendraSingh_R</dc:creator>
      <dc:date>2021-03-12T16:05:00Z</dc:date>
    </item>
  </channel>
</rss>

