<?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: process table in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188211#M9750</link>
    <description>You could use auditing.  Might be hard to fish out the details you need, but it'll all be there.&lt;BR /&gt;&lt;BR /&gt;Mario</description>
    <pubDate>Wed, 11 Feb 2004 19:16:22 GMT</pubDate>
    <dc:creator>Mario Stargard</dc:creator>
    <dc:date>2004-02-11T19:16:22Z</dc:date>
    <item>
      <title>process table</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188205#M9744</link>
      <description>Would anyone out there happen to have a&lt;BR /&gt;script or would know how to capture particular&lt;BR /&gt;account processes and log them.&lt;BR /&gt;&lt;BR /&gt;ps -ef gives you the current snapshot of what&lt;BR /&gt;is running but how would you capture particular&lt;BR /&gt;process in real time to a log file without&lt;BR /&gt;have dups entires.&lt;BR /&gt;&lt;BR /&gt;Doing a:&lt;BR /&gt;&lt;BR /&gt;ps -ef|grep -v &lt;DON&gt;|grep -i &lt;WHAT is="" wanted=""&gt;  &amp;gt;&amp;gt;pslog&lt;BR /&gt;&lt;BR /&gt;doesn't give you realtime data.&lt;BR /&gt;&lt;BR /&gt;acctcom does not have the info needed either.&lt;/WHAT&gt;&lt;/DON&gt;</description>
      <pubDate>Tue, 10 Feb 2004 14:46:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188205#M9744</guid>
      <dc:creator>jerry1</dc:creator>
      <dc:date>2004-02-10T14:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: process table</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188206#M9745</link>
      <description>What do you exactly want to log? Memory usage? CPU? If having a snapshot each second is "real time" enough you could combine the ps command and PID for listing the wanted data.&lt;BR /&gt;&lt;BR /&gt;If you want to log memory usage whenever it changes, you need something to trace all your memory allocation/free calls. Like strace on GNU/Linux systems.</description>
      <pubDate>Wed, 11 Feb 2004 03:20:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188206#M9745</guid>
      <dc:creator>Wing Tung Leung</dc:creator>
      <dc:date>2004-02-11T03:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: process table</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188207#M9746</link>
      <description>I would like to see what processes as oracle&lt;BR /&gt;are being run minus the ones I already know&lt;BR /&gt;are okay. So if you have 50 oracle processes&lt;BR /&gt;running at any one time. I would exclude the&lt;BR /&gt;ones I know are okay based on the string&lt;BR /&gt;of the process name running and capture&lt;BR /&gt;the other processes as they run. But, a process that I don't know about may only run for a second or two or a minute or two. &lt;BR /&gt;If I am taking a snapshot every 5 or 15 minutes or even 1 minute. I will miss those processes in between. See the dilemma.&lt;BR /&gt;It's almost like I would have to be listening&lt;BR /&gt;or looking somewhere for the next process&lt;BR /&gt;that the kernel is going to run and determine&lt;BR /&gt;if I want to log or not log that process to&lt;BR /&gt;a file. &lt;BR /&gt;Is there a process table or directory somewhere that can be utilized to at least&lt;BR /&gt;capture this info?</description>
      <pubDate>Wed, 11 Feb 2004 08:53:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188207#M9746</guid>
      <dc:creator>jerry1</dc:creator>
      <dc:date>2004-02-11T08:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: process table</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188208#M9747</link>
      <description>like the other thread said... /proc would be your best bet. You have access to every process running in realtime with their command line and  &lt;BR /&gt;mucho interesting stuff.&lt;BR /&gt;&lt;BR /&gt;Maybe process accounting but I dont know that very well.&lt;BR /&gt;&lt;BR /&gt;You will miss some of them with crontab.</description>
      <pubDate>Wed, 11 Feb 2004 09:04:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188208#M9747</guid>
      <dc:creator>Olivier Drouin</dc:creator>
      <dc:date>2004-02-11T09:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: process table</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188209#M9748</link>
      <description>Have you tried process accounting? I don't know how configurable it is, but you could probably script something from the output.&lt;BR /&gt;&lt;A href="http://www.tldp.org/HOWTO/Process-Accounting/" target="_blank"&gt;http://www.tldp.org/HOWTO/Process-Accounting/&lt;/A&gt;</description>
      <pubDate>Wed, 11 Feb 2004 11:10:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188209#M9748</guid>
      <dc:creator>Paul Cross_1</dc:creator>
      <dc:date>2004-02-11T11:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: process table</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188210#M9749</link>
      <description>Whoops, I am in the wrong forum. This question needs to be in the HP sysadmin&lt;BR /&gt;forums. No wonder /proc was not there.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Feb 2004 12:52:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188210#M9749</guid>
      <dc:creator>jerry1</dc:creator>
      <dc:date>2004-02-11T12:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: process table</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188211#M9750</link>
      <description>You could use auditing.  Might be hard to fish out the details you need, but it'll all be there.&lt;BR /&gt;&lt;BR /&gt;Mario</description>
      <pubDate>Wed, 11 Feb 2004 19:16:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-table/m-p/3188211#M9750</guid>
      <dc:creator>Mario Stargard</dc:creator>
      <dc:date>2004-02-11T19:16:22Z</dc:date>
    </item>
  </channel>
</rss>

