<?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: memory tools in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579643#M229609</link>
    <description>Hi George,&lt;BR /&gt;&lt;BR /&gt;other ITRC people already suggested the best about how to monitor memory usage on HP-UX.&lt;BR /&gt;Against my usual philosophy I am going to indicate you a completely unsupported tool on HP-UX:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://i1.dk/download/pmap/" target="_blank"&gt;http://i1.dk/download/pmap/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I hope that helps you.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Fabio</description>
    <pubDate>Mon, 11 Jul 2005 11:58:57 GMT</pubDate>
    <dc:creator>Fabio Ettore</dc:creator>
    <dc:date>2005-07-11T11:58:57Z</dc:date>
    <item>
      <title>memory tools</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579640#M229606</link>
      <description>Currently use top to display memory usage on individual process. However, need more detailed info. Does anyone know some utilities in HPUX like pmap in Solaris? How to display kernel memory usage in detail? Thanks.</description>
      <pubDate>Mon, 11 Jul 2005 11:30:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579640#M229606</guid>
      <dc:creator>George Liu_4</dc:creator>
      <dc:date>2005-07-11T11:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: memory tools</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579641#M229607</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It can be used with Glance plus. It can be used as free for some time ( I think 60 days).But gives good info.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
      <pubDate>Mon, 11 Jul 2005 11:33:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579641#M229607</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-07-11T11:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: memory tools</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579642#M229608</link>
      <description>Glance will give detailed memory usage.  It will give information down to the thread level. If you have measureware agents installed, you can configure it so that glance reports by application groups as well</description>
      <pubDate>Mon, 11 Jul 2005 11:38:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579642#M229608</guid>
      <dc:creator>DCE</dc:creator>
      <dc:date>2005-07-11T11:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: memory tools</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579643#M229609</link>
      <description>Hi George,&lt;BR /&gt;&lt;BR /&gt;other ITRC people already suggested the best about how to monitor memory usage on HP-UX.&lt;BR /&gt;Against my usual philosophy I am going to indicate you a completely unsupported tool on HP-UX:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://i1.dk/download/pmap/" target="_blank"&gt;http://i1.dk/download/pmap/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I hope that helps you.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Fabio</description>
      <pubDate>Mon, 11 Jul 2005 11:58:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579643#M229609</guid>
      <dc:creator>Fabio Ettore</dc:creator>
      <dc:date>2005-07-11T11:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: memory tools</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579644#M229610</link>
      <description>Some scripts:&lt;BR /&gt;&lt;BR /&gt;# cat /usr/local/bin/memtop&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# memtop - show top memory users and pid&lt;BR /&gt;# VSZ is in KB&lt;BR /&gt;&lt;BR /&gt;echo "VSZ(KB)   PID RUSER    COMMAND"&lt;BR /&gt;UNIX95= ps -e -o 'vsz pid ruser args' |sort -nr|head -30&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# cat /usr/local/bin/processmem&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# processmem - display memory claimed by a process&lt;BR /&gt;# gwild 03192004&lt;BR /&gt;#&lt;BR /&gt;if [ $# -lt 1 -o \( $# -gt 1 -a $# -lt 4 \) ]&lt;BR /&gt;then&lt;BR /&gt;  echo "Usage:"&lt;BR /&gt;  echo "processmem \"process\""&lt;BR /&gt;  echo "Example:"&lt;BR /&gt;  echo "processmem rpc"&lt;BR /&gt;  exit 1&lt;BR /&gt;fi&lt;BR /&gt;echo " "&lt;BR /&gt;&lt;BR /&gt;PROCESS=$1&lt;BR /&gt;&lt;BR /&gt;mps=0&lt;BR /&gt;#for sz in `ps -elf | grep $PROCESS | grep -v grep | awk '{print $10}'`&lt;BR /&gt;for sz in `UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid,args=Command-Line | sort -rnk1 | grep -v Kbytes | grep $PROCESS | awk '{print $1}'`&lt;BR /&gt;do&lt;BR /&gt;mps=`expr $mps + $sz`&lt;BR /&gt;done&lt;BR /&gt;#echo `expr $mps \* 4096`&lt;BR /&gt;echo "\nMemory claimed by $PROCESS: $mps Kbytes.\n"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;As well as memdetail - a c program attached.&lt;BR /&gt;&lt;BR /&gt;# memdetail&lt;BR /&gt;Memory Stat      total    used   avail   %used&lt;BR /&gt;physical        10080.0 10040.8   39.2    100%&lt;BR /&gt;active virtual  14250.0 5956.0  8294.0     42%&lt;BR /&gt;active real     8645.0  3306.1  5338.9     38%&lt;BR /&gt;memory swap     7693.0  1592.4  6100.6     21%&lt;BR /&gt;device swap     26528.0 12474.0 14054.0    47%&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 11 Jul 2005 12:03:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579644#M229610</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-07-11T12:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: memory tools</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579645#M229611</link>
      <description>George - did any of the above help you?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums2.itrc.hp.com/service/forums/pageList.do?userId=CA1099407&amp;amp;listType=unassigned&amp;amp;forumId=1" target="_blank"&gt;http://forums2.itrc.hp.com/service/forums/pageList.do?userId=CA1099407&amp;amp;listType=unassigned&amp;amp;forumId=1&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 12 Jul 2005 06:14:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-tools/m-p/3579645#M229611</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-07-12T06:14:22Z</dc:date>
    </item>
  </channel>
</rss>

