- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Performance Monitoring Processes doing reading and...
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
12-10-2002 09:46 AM
12-10-2002 09:46 AM
Performance Monitoring Processes doing reading and writing
Are there any commands which actually allow me to find what processes are reading from or writing to a disk/s?
For example I can use sar -d to see that the disks are busy, and I can use lsof to see what processes have open files on those disks (the way the file system is set up).
But how can I find out what is actually reading or writing?
Your help is appreciated.
Best regards
Ben
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2002 09:53 AM
12-10-2002 09:53 AM
Re: Performance Monitoring Processes doing reading and writing
Fuser may do what you require, you must be root to run it.
see man fuser.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2002 09:57 AM
12-10-2002 09:57 AM
Re: Performance Monitoring Processes doing reading and writing
If you have it, you can use the Measureware product to extract process data using the PROC_DISK_LOGL_READ_RATE, PROC_DISK_LOGL_WRITE_RATE, and so on and tie them to the metric PROC_APP_ID.
Hope this helps
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 03:27 AM
12-11-2002 03:27 AM
Re: Performance Monitoring Processes doing reading and writing
Best regards
Ben
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 04:07 AM
12-11-2002 04:07 AM
Re: Performance Monitoring Processes doing reading and writing
The real answer is NO, because processes can switch back and forth between processors so fast that measuring that grainularity is insane and more likely a waste of resources.
You could PRETEND that processes don't switch between processors and capture a ps -ef when you are doing a sar -d, and then match the IO activity up to the processes and then extract the CPU number.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 04:26 AM
12-11-2002 04:26 AM
Re: Performance Monitoring Processes doing reading and writing
as for as i know, there are no any commands.