<?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 Filter process using more swap in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201289#M463497</link>
    <description>Hello Everyone, i need to filter the process which is using more memory (swap) in hpux box.In top and glance we can able to see the process but can't filter it .Your suggestions please...</description>
    <pubDate>Tue, 29 Sep 2009 15:59:52 GMT</pubDate>
    <dc:creator>Vee_1</dc:creator>
    <dc:date>2009-09-29T15:59:52Z</dc:date>
    <item>
      <title>Filter process using more swap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201289#M463497</link>
      <description>Hello Everyone, i need to filter the process which is using more memory (swap) in hpux box.In top and glance we can able to see the process but can't filter it .Your suggestions please...</description>
      <pubDate>Tue, 29 Sep 2009 15:59:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201289#M463497</guid>
      <dc:creator>Vee_1</dc:creator>
      <dc:date>2009-09-29T15:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Filter process using more swap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201290#M463498</link>
      <description>Hello Vee!&lt;BR /&gt;&lt;BR /&gt;There is an option for top to write a "snapshot" to file which you can subsequently use for filtering out this process:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;top -f top.log&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka</description>
      <pubDate>Tue, 29 Sep 2009 16:15:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201290#M463498</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-29T16:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Filter process using more swap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201291#M463499</link>
      <description>We can do that but we only get the first page of top and not the remaining pages.</description>
      <pubDate>Tue, 29 Sep 2009 16:20:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201291#M463499</guid>
      <dc:creator>Vee_1</dc:creator>
      <dc:date>2009-09-29T16:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filter process using more swap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201292#M463500</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Refer to the ps -o options especially vsz for virtual stack size and pipe it into a UNIX95 command after you've selected the arguements from -o that you want.&lt;BR /&gt;&lt;BR /&gt;UNIX95=1 ps -ef -o vsz,pcpu,ppid,pid,comm | sort -rn | top -10&lt;BR /&gt;&lt;BR /&gt;Eact arguement represent a column of data but only the 1st argument is sorted in reverse order.</description>
      <pubDate>Tue, 29 Sep 2009 16:24:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201292#M463500</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2009-09-29T16:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Filter process using more swap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201293#M463501</link>
      <description>Hello Vee!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Use a large enough number with -n flag to get all your needed processes written to file:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;top -f top.log -n &lt;NUMBER&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka&lt;/NUMBER&gt;</description>
      <pubDate>Tue, 29 Sep 2009 16:25:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201293#M463501</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-29T16:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Filter process using more swap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201294#M463502</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;UNIX95=1 ps -ef -o vsz,pcpu,ppid,pid,comm | sort -rn | top -10&lt;BR /&gt;&lt;BR /&gt;The important part here is vsz, which stands for virtual size.&lt;BR /&gt;&lt;BR /&gt;That based on this command syntax, which is not mine (I cut and pasted it) will give you the biggest reserver  of swap first.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 29 Sep 2009 17:00:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201294#M463502</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-09-29T17:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Filter process using more swap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201295#M463503</link>
      <description>Thanks for everyone's input.</description>
      <pubDate>Tue, 29 Sep 2009 17:08:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filter-process-using-more-swap/m-p/5201295#M463503</guid>
      <dc:creator>Vee_1</dc:creator>
      <dc:date>2009-09-29T17:08:53Z</dc:date>
    </item>
  </channel>
</rss>

