- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: process table
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2004 06:46 AM
02-10-2004 06:46 AM
script or would know how to capture particular
account processes and log them.
ps -ef gives you the current snapshot of what
is running but how would you capture particular
process in real time to a log file without
have dups entires.
Doing a:
ps -ef|grep -v
doesn't give you realtime data.
acctcom does not have the info needed either.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2004 07:20 PM
02-10-2004 07:20 PM
Re: process table
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2004 12:53 AM
02-11-2004 12:53 AM
Re: process table
are being run minus the ones I already know
are okay. So if you have 50 oracle processes
running at any one time. I would exclude the
ones I know are okay based on the string
of the process name running and capture
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.
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.
It's almost like I would have to be listening
or looking somewhere for the next process
that the kernel is going to run and determine
if I want to log or not log that process to
a file.
Is there a process table or directory somewhere that can be utilized to at least
capture this info?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2004 01:04 AM
02-11-2004 01:04 AM
Re: process table
mucho interesting stuff.
Maybe process accounting but I dont know that very well.
You will miss some of them with crontab.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2004 03:10 AM
02-11-2004 03:10 AM
Solutionhttp://www.tldp.org/HOWTO/Process-Accounting/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2004 04:52 AM
02-11-2004 04:52 AM
Re: process table
forums. No wonder /proc was not there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2004 11:16 AM
02-11-2004 11:16 AM
Re: process table
Mario