<?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: System performance in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474922#M212397</link>
    <description>You've mentioned one of the main reasons that HP sells glance.  I recommend it.  Like someone else posted, whenever I see heavy memory usage I use:&lt;BR /&gt;ps -ef|sort -k 4nr,4|pg &lt;BR /&gt;to see which processes are hitting the system the hardest.  But Glance has all this good stuff for you already sliced, diced and graphical.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Chris</description>
    <pubDate>Mon, 31 Jan 2005 17:48:53 GMT</pubDate>
    <dc:creator>Chris Vail</dc:creator>
    <dc:date>2005-01-31T17:48:53Z</dc:date>
    <item>
      <title>System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474914#M212389</link>
      <description>Does anyone have a way to sort Memory usage per process? Please provide if anyone uses script to do this! &lt;BR /&gt;Thanks and regards&lt;BR /&gt;Prashant</description>
      <pubDate>Mon, 31 Jan 2005 12:07:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474914#M212389</guid>
      <dc:creator>Prashant Zanwar_4</dc:creator>
      <dc:date>2005-01-31T12:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474915#M212390</link>
      <description>#!/bin/sh&lt;BR /&gt;echo "VSZ(KB) PID RUSER COMMAND"&lt;BR /&gt;UNIX95= ps -e -o 'vsz pid ruser args' |sort -nr |more</description>
      <pubDate>Mon, 31 Jan 2005 12:12:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474915#M212390</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2005-01-31T12:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474916#M212391</link>
      <description>When I am having memory problems, I sometimes go looking for the cpu usage off of ps since heavy CPU usage correlates at times to the memory usage:&lt;BR /&gt;&lt;BR /&gt;ps -ef | sort -nr -k42,80 | head&lt;BR /&gt;&lt;BR /&gt;Then repeat it a few seconds later to see where the CPU time is being burned up.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Jan 2005 13:56:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474916#M212391</guid>
      <dc:creator>Kent Ostby</dc:creator>
      <dc:date>2005-01-31T13:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474917#M212392</link>
      <description>sort -rn -k 2</description>
      <pubDate>Mon, 31 Jan 2005 14:01:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474917#M212392</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2005-01-31T14:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474918#M212393</link>
      <description>Sorry, here is the script I use.&lt;BR /&gt;&lt;BR /&gt; where quantity is the top RAM processes to show (default is 20)&lt;BR /&gt;#&lt;BR /&gt;set -u&lt;BR /&gt;if [ $# -gt 0 ]&lt;BR /&gt;then&lt;BR /&gt;   TOPPROCS=$1&lt;BR /&gt;else&lt;BR /&gt;   TOPPROCS=20&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;MYNAME=$(basename $0)&lt;BR /&gt;TEMPFILE=/var/tmp/$MYNAME.$$&lt;BR /&gt;trap `rm -f $TEMPFILE &amp;gt; /dev/null 2&amp;gt;&amp;amp;1` 0 1 2 3 15&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o ruser,vsz=Kbytes -o pid,args=Command-Line &amp;gt; $TEMPFILE&lt;BR /&gt;head -1 $TEMPFILE&lt;BR /&gt;DASH5="-----"&lt;BR /&gt;DASH25="$DASH5$DASH5$DASH5$DASH5$DASH5"&lt;BR /&gt;echo "$DASH5---- $DASH5- $DASH5 $DASH25$DASH25"&lt;BR /&gt;grep -v "VSZ COMMAND" $TEMPFILE \&lt;BR /&gt;     | cut -c -78 \&lt;BR /&gt;     | sort -rn -k 2 \&lt;BR /&gt;     | head -${TOPPROCS}&lt;BR /&gt;&lt;BR /&gt;rm $TEMPFILE &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Jan 2005 14:02:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474918#M212393</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2005-01-31T14:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474919#M212394</link>
      <description>Thanks both..For some reason I am not able to work with 1st option UNIX95...&lt;BR /&gt;Is there any way to know IO per process..&lt;BR /&gt;Will be very gr8 help..&lt;BR /&gt;Thanks and regards&lt;BR /&gt;Prashant</description>
      <pubDate>Mon, 31 Jan 2005 14:07:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474919#M212394</guid>
      <dc:creator>Prashant Zanwar_4</dc:creator>
      <dc:date>2005-01-31T14:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474920#M212395</link>
      <description>Note that there MUST be a space between UNIX95= and the ps command.&lt;BR /&gt;&lt;BR /&gt;Like:&lt;BR /&gt;&lt;BR /&gt;# UNIX95=&lt;SPACE&gt;ps...........&lt;/SPACE&gt;</description>
      <pubDate>Mon, 31 Jan 2005 14:28:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474920#M212395</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-01-31T14:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474921#M212396</link>
      <description>thats all gr8...&lt;BR /&gt;I wanted something to sort processes per IO usage...It's quite complicated and not straight always to look at IO hits and then drill thru processes..does anyone uses any script for this..One of my server is trashing..heavy IO also..Please help..&lt;BR /&gt;Thx&lt;BR /&gt;Prashant</description>
      <pubDate>Mon, 31 Jan 2005 15:29:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474921#M212396</guid>
      <dc:creator>Prashant Zanwar_4</dc:creator>
      <dc:date>2005-01-31T15:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474922#M212397</link>
      <description>You've mentioned one of the main reasons that HP sells glance.  I recommend it.  Like someone else posted, whenever I see heavy memory usage I use:&lt;BR /&gt;ps -ef|sort -k 4nr,4|pg &lt;BR /&gt;to see which processes are hitting the system the hardest.  But Glance has all this good stuff for you already sliced, diced and graphical.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Mon, 31 Jan 2005 17:48:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474922#M212397</guid>
      <dc:creator>Chris Vail</dc:creator>
      <dc:date>2005-01-31T17:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: System performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474923#M212398</link>
      <description>Prashant - Chris is right - Glance is the tool for this job.  You can load it right off the install CD's for a free 30 day trial.  HP is hoping you get hooked on it and therefore buy it - and you probably should, it really makes life simpler for these sorts of issues.</description>
      <pubDate>Mon, 31 Jan 2005 19:13:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-performance/m-p/3474923#M212398</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-01-31T19:13:31Z</dc:date>
    </item>
  </channel>
</rss>

