<?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: Session Warnings in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67553#M20158</link>
    <description>I think in BP current version 6.6 is not possible to set that configuration in the GUI.&lt;BR /&gt;&lt;BR /&gt;But, If you want to solve it, you can do the following:&lt;BR /&gt;+ Create a DB connection to retrieve data from BP server DataBase.&lt;BR /&gt;+ Create a process that run a query to retrieve the runtime resource status.&lt;BR /&gt;+ Send an Email Notification of the "Warning" state found.&lt;BR /&gt;&lt;BR /&gt;Plus&lt;BR /&gt;+ Execute a "Reboot" script to get the runtime resource ready to recover from the last pending queue item, or to process the next workload.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Raul Mojica&lt;BR /&gt;RPA Developer&lt;BR /&gt;Millicom&lt;BR /&gt;America/El_Salvador&lt;BR /&gt;+50372018312&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 31 Jan 2020 22:36:00 GMT</pubDate>
    <dc:creator>RaúlHernández</dc:creator>
    <dc:date>2020-01-31T22:36:00Z</dc:date>
    <item>
      <title>Session Warnings</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67552#M20157</link>
      <description>Hi, I was wondering if anybody could tell me if there is an option to allow BP to alert if a processes is taking a long time to complete (or is stuck). I'm guessing the option would be to enable the default session warning time, but how does it actually alert you?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;James Williams&lt;BR /&gt;Developer&lt;BR /&gt;Engie&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Jan 2020 14:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67552#M20157</guid>
      <dc:creator>JamesWilliams</dc:creator>
      <dc:date>2020-01-23T14:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: Session Warnings</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67553#M20158</link>
      <description>I think in BP current version 6.6 is not possible to set that configuration in the GUI.&lt;BR /&gt;&lt;BR /&gt;But, If you want to solve it, you can do the following:&lt;BR /&gt;+ Create a DB connection to retrieve data from BP server DataBase.&lt;BR /&gt;+ Create a process that run a query to retrieve the runtime resource status.&lt;BR /&gt;+ Send an Email Notification of the "Warning" state found.&lt;BR /&gt;&lt;BR /&gt;Plus&lt;BR /&gt;+ Execute a "Reboot" script to get the runtime resource ready to recover from the last pending queue item, or to process the next workload.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Raul Mojica&lt;BR /&gt;RPA Developer&lt;BR /&gt;Millicom&lt;BR /&gt;America/El_Salvador&lt;BR /&gt;+50372018312&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 31 Jan 2020 22:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67553#M20158</guid>
      <dc:creator>RaúlHernández</dc:creator>
      <dc:date>2020-01-31T22:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Session Warnings</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67554#M20159</link>
      <description>I have setup a process that is run hourly (could be more frequent) to look for such issues and send an email about issues occurring in the environment (or other environments).&amp;nbsp;&amp;nbsp; Here are my queries to get the Count of issues where a Warning is being shown for a process run (now update for the process in over 5 minutes - like the as seen&amp;nbsp;on the&amp;nbsp;System Setting ​screen in Blue Prism).&lt;BR /&gt;&lt;BR /&gt;' ************ Possible Frozen Sessions ************&lt;BR /&gt;&lt;BR /&gt;-- Count of Possible Frozen Sessions (warning status - no stage updates in over 5 minutes)&lt;BR /&gt;&lt;BR /&gt;SELECT COUNT(*) AS RESULT&amp;nbsp; &lt;BR /&gt;FROM dbo.BPVSessionInfo INNER JOIN dbo.BPAStatus ON dbo.BPVSessionInfo.statusid = dbo.BPAStatus.statusid &lt;BR /&gt;WHERE dbo.BPVSessionInfo.enddatetime IS NULL&lt;BR /&gt;AND DATEDIFF(minute,dbo.BPVSessionInfo.lastupdated, SYSDATETIME()) &amp;gt; 5&lt;BR /&gt;&lt;BR /&gt;-- Details&lt;BR /&gt;&lt;BR /&gt;SELECT &lt;BR /&gt;dbo.BPVSessionInfo.processname AS Process, &lt;BR /&gt;dbo.BPVSessionInfo.starterresourcename AS Resource, &lt;BR /&gt;dbo.BPAStatus.description AS Status, &lt;BR /&gt;FORMAT(dbo.BPVSessionInfo.startdatetime, 'MM-d-yyyy hh:mm:ss tt') AS [Start Date Time], &lt;BR /&gt;FORMAT(dbo.BPVSessionInfo.enddatetime, 'MM-d-yyyy hh:mm:ss tt') AS [End Date Time], &lt;BR /&gt;dbo.BPVSessionInfo.laststage AS [Latest Stage],&lt;BR /&gt;FORMAT(dbo.BPVSessionInfo.lastupdated, 'MM-d-yyyy hh:mm:ss tt') AS [Stage Started], &lt;BR /&gt;DATEDIFF(minute,dbo.BPVSessionInfo.lastupdated, SYSDATETIME()) AS [Minutes Since Last Stage Update]&lt;BR /&gt;FROM dbo.BPVSessionInfo INNER JOIN dbo.BPAStatus ON dbo.BPVSessionInfo.statusid = dbo.BPAStatus.statusid &lt;BR /&gt;WHERE dbo.BPVSessionInfo.enddatetime IS NULL&lt;BR /&gt;AND DATEDIFF(minute,dbo.BPVSessionInfo.lastupdated, SYSDATETIME()) &amp;gt; 5 &lt;BR /&gt;ORDER BY dbo.BPVSessionInfo.startdatetime DESC, [End Date Time], Resource, Process, Status&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Brenton Westwood&lt;BR /&gt;Systems Analyst&lt;BR /&gt;Southern Company&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 01 Feb 2020 18:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67554#M20159</guid>
      <dc:creator>bjwestwo</dc:creator>
      <dc:date>2020-02-01T18:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: Session Warnings</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67555#M20160</link>
      <description>Thanks Brenton, this was very helpful!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Annie C&lt;BR /&gt;Robotics Senior Developer&lt;BR /&gt;Europe/Helsinki&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Sep 2020 09:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Session-Warnings/m-p/67555#M20160</guid>
      <dc:creator>acilinska</dc:creator>
      <dc:date>2020-09-08T09:03:00Z</dc:date>
    </item>
  </channel>
</rss>

