disk and memory monitoring problem


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory disk and memory monitoring problem
# 1  
Old 05-14-2008
disk and memory monitoring problem

Hi all,

I am looking for api to get me system monitoring statictics every 5 minutes.

I am looking at the following statistics:

1. System CPU Usage
2. Process CPU Usage
3. Process Memory Usage
4. I/O Usage for a certain disk.
5. Process I/O bytes/sec utilization.

I have seen very nice api pstat_* for HP but I am also looking for api on Linux and solaris as well.

Any bit of generic unix would be of great use.

Thanks,
Raj
# 2  
Old 07-07-2008
Solaris as root user with the
smc
command! (This opens a GUI)

Solaris prstat is also available!

This GUI helps!
Br Joerg
# 3  
Old 07-13-2008
USE THE BELOW COMMANDS
prstat -a
top
iostat -xtc 5 2
vmstat 5
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Disk usage monitoring and record the disk used in last 24 hour

HI I am Trying to edit the below code to send email every day with difference of disk utilized in for last 24 hours but instead getting same usage everyday. can you please help me to point out where my calculation is going wrong. Thank you. ================= #!/bin/bash TODAY="at $(date... (0 Replies)
Discussion started by: Mi4304
0 Replies

2. Shell Programming and Scripting

Memory Monitoring using ksh

MEMORY Usage should also be captured in a table format with usage by each user. Columns should be a. System time b. User c. Percentage usage Report should be published with d. current usage status e. Trend over last 3 quarter f. Usage by user When usage of MEMORY is... (1 Reply)
Discussion started by: roy1912
1 Replies

3. Infrastructure Monitoring

Memory and Database Monitoring

Hi, We have recently implemented lpar2rrd tool to monitor CPU usage in our company but now they are are asking if it is possible to monitor Database and memory usage and have it output the data on a graph as well. The memory part I know it is possible I am just not sure how to implement it.... (1 Reply)
Discussion started by: vpundit
1 Replies

4. Shell Programming and Scripting

Script for monitoring disk failures

Hi , Does anyone have a script for monitoring disk failures on a Solaris 10/11 box? Need one today ASAP, thnks in advance. (2 Replies)
Discussion started by: walnutpony123
2 Replies

5. Shell Programming and Scripting

ZFS file system - memory monitoring

I am working on a server where the 'root' user ZFS filesystem. Now when I do Top commands it says only 750M free .But when I count the actual memory utilized it comes only to 12 GB and the total size of the server is 32G. I think rest of the space is held up by ZFS file system. Is there a... (5 Replies)
Discussion started by: prasperl
5 Replies

6. Shell Programming and Scripting

Disk Space Monitoring Script - OLD and NEW

It's the old thread "Disk Space Monitoring Script", modified for UNIX This is the new code: df -k | awk ' { if ( int($4) > 90) {subject = $1 " More than 90% disk usage. Used: " $4 email = "email@test.com" print subject cmd = "mailx -s \"" subject "\" " email cmd | getline... (4 Replies)
Discussion started by: dungureanu
4 Replies

7. UNIX for Dummies Questions & Answers

Solaris Disk Monitoring?

Hi Guys, I'm looking for a way to monitor disk health/status for a Solaris 5.8 sparc machine. I'm looking for something similar to LSIutility or MegaCLI. Any suggestions? Output of `modinfo`: 30 102616fb 10be8 118 1 ssd (SCSI SSA/FCAL Disk Driver 1.151) 122 7821c000 18550 32 1 ... (2 Replies)
Discussion started by: tank126
2 Replies

8. UNIX for Dummies Questions & Answers

monitoring cpu and memory of the unix box

Hi all, Unix has the TOP and SAR command to monitor machine's performance. Can it be used in a script to alert if the cpu utilization is more than 80 or memory used is more than 90. Is SAR preferable than TOP? Please advise. (3 Replies)
Discussion started by: er_ashu
3 Replies

9. HP-UX

Memory Usage Monitoring

Hey guys how do you determined how much memory is consumed a certain process in HP-UX,Also is there any other way of determining free memory if memdetail and sar -r is unavailable? (2 Replies)
Discussion started by: sbn
2 Replies

10. AIX

C function/system call for memory monitoring

Hello! Is there a C function or system call in AIX that can tell how much free memory is in the system at a certain moment? Also, I'd like to know if there are functions that can: -find the number of processors in the system -report the network interface activity. Thank you very much in... (0 Replies)
Discussion started by: aldehida
0 Replies
Login or Register to Ask a Question