<?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: find out Runaway processes in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548931#M701895</link>
    <description>If you use cyborg hr, its probably that oracle cyborg process.&lt;BR /&gt;&lt;BR /&gt;Way to many cpu cycles.&lt;BR /&gt;&lt;BR /&gt;Cyborg has patches to deal with runaway cvsvb batch processes.&lt;BR /&gt;&lt;BR /&gt;The runaways in general are usually the ones with the most cpu cycles and percent on a top display.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Fri, 20 May 2005 11:37:35 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2005-05-20T11:37:35Z</dc:date>
    <item>
      <title>find out Runaway processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548930#M701893</link>
      <description>&lt;BR /&gt;We have application which many users are working in it. some users processes stay there too long, &lt;BR /&gt;after 12 hours there,  they will qualify as  runaway processes to report them each morning. &lt;BR /&gt;&lt;BR /&gt;But we would not report background processes (owners are root, lp, www)&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -eo user,pid,comm,etime | egrep -v 'root|lp|www'&lt;BR /&gt;vgoldenz 20214 ksh             01:06:27&lt;BR /&gt;aronan   18574 ksh                00:12&lt;BR /&gt;vgoldenz 20303 ksh             01:06:19&lt;BR /&gt;cvalenti 15158 sh                 08:07&lt;BR /&gt;jteahan  17664 ksh                02:26&lt;BR /&gt;emariano  9651 ksh                18:52&lt;BR /&gt;sreaves  17623 mhotlist.exe       02:41&lt;BR /&gt;cpovitch 16621 ksh                05:28&lt;BR /&gt;cpovitch 16239 ewarnrpt.exe       06:23&lt;BR /&gt;bmulu    17069 buymnt.exe         04:57&lt;BR /&gt;rgursky  21363 sh              01:00:13&lt;BR /&gt;jdolan   14516 menuprow.exe       08:28&lt;BR /&gt;tbastian  2655 ksh                42:59&lt;BR /&gt;aronan   18606 matchrp1.exe       00:11&lt;BR /&gt;cpovitch 10108 ksh                17:05&lt;BR /&gt;&lt;BR /&gt;In another machine, the "UNIX95= ps ..." command &lt;BR /&gt;oraprod  16671 oraclecyborg    07:01:20&lt;BR /&gt;oraprod  28094 ora_s000_cyborg 10-23:40:19&lt;BR /&gt;oraprod  28061 tnslsnr         10-23:41:22&lt;BR /&gt;pdziedzi 18020 smbd            01:40:41&lt;BR /&gt;&lt;BR /&gt;the elapse time format as&lt;BR /&gt;&lt;BR /&gt;within one hour&lt;BR /&gt;mm:ss&lt;BR /&gt;&lt;BR /&gt;then,longer than one hour&lt;BR /&gt;hh:mm:ss&lt;BR /&gt;&lt;BR /&gt;longer than 24 hour&lt;BR /&gt;d-hh:mm:ss&lt;BR /&gt;&lt;BR /&gt;To get only hour (hh) value out in awk -F: As below command does not work well,&lt;BR /&gt;UNIX95= ps -eo user,pid,etime,comm | awk -F: '$3 &amp;gt;= 12' &lt;BR /&gt;My problem is hard to parse out hh value  &lt;BR /&gt;&lt;BR /&gt;Thank you</description>
      <pubDate>Fri, 20 May 2005 11:13:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548930#M701893</guid>
      <dc:creator>bin lu_1</dc:creator>
      <dc:date>2005-05-20T11:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: find out Runaway processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548931#M701895</link>
      <description>If you use cyborg hr, its probably that oracle cyborg process.&lt;BR /&gt;&lt;BR /&gt;Way to many cpu cycles.&lt;BR /&gt;&lt;BR /&gt;Cyborg has patches to deal with runaway cvsvb batch processes.&lt;BR /&gt;&lt;BR /&gt;The runaways in general are usually the ones with the most cpu cycles and percent on a top display.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 20 May 2005 11:37:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548931#M701895</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-05-20T11:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: find out Runaway processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548932#M701897</link>
      <description>The attached script should do what you want. Note than only those $3's with 2 colons are of interest so we can leverage split to look for those. We then call split another time, splitting on "-". This script should output those processes with total hrs &amp;gt;= 12. I leave the remainder of user and process name filtering to you.&lt;BR /&gt;&lt;BR /&gt;Note the use of a function to build a fairly complex awk script and also note that I always add ($x + 0) to any field that should be a numeric value. This convention forces awk to evaluate in numeric context.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 May 2005 12:00:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548932#M701897</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-05-20T12:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: find out Runaway processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548933#M701900</link>
      <description>Thank you steven and Stephenson.&lt;BR /&gt;&lt;BR /&gt;I will late check the runaway patch fix. It is good direction to know information and work for that.&lt;BR /&gt;&lt;BR /&gt;Stephenson script goes more than my expectation. It will also lead me to digest it later. It will be one chapter of my learning script bible.&lt;BR /&gt;&lt;BR /&gt;Thank you all very much.</description>
      <pubDate>Fri, 20 May 2005 18:55:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-out-runaway-processes/m-p/3548933#M701900</guid>
      <dc:creator>bin lu_1</dc:creator>
      <dc:date>2005-05-20T18:55:21Z</dc:date>
    </item>
  </channel>
</rss>

