Sponsored Content
Operating Systems Solaris current CPU usage, memory usage, disk I/O oid(snmp) Post 302267648 by sandejai on Saturday 13th of December 2008 05:19:47 AM
Old 12-13-2008
pstat

will do a help
 

10 More Discussions You Might Find Interesting

1. Programming

Monitor CPU usage and Memory Usage

how can i monitor usages of CPU, Memory, Hard disk etc. under SUN Solaries through a c program or java program i want to store that data into database so i can show it graphically thanks in advance (2 Replies)
Discussion started by: Gajanad Bihani
2 Replies

2. UNIX for Advanced & Expert Users

Monitoring CPU usage on AIX 5.3 with SNMP

Hi I would like to monitor CPU usage ( %) , memory utilization and such on an AIX 5.3 with snmp. How would I do that ? :confused: If I do "snmpwalk -c public -v1 hosttomonitor" I get nothing about the CPU. I've done this on Linux ( not much trouble doing it on linux ) but I'm having a hard... (2 Replies)
Discussion started by: art
2 Replies

3. Programming

CPU usage and memory usage

Please tell me solaris functions/api for getting following information 1- Function that tells how much memory used by current process 2- Function that tells how much memory used by all running processes 3- Function that tells how much CPU is used by current process 4- Function that tells how... (1 Reply)
Discussion started by: mansoorulhaq
1 Replies

4. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

5. AIX

How to monitor the IBM AIX server for I/O usage,memory usage,CPU usage,network..?

How to monitor the IBM AIX server for I/O usage, memory usage, CPU usage, network usage, storage usage? (3 Replies)
Discussion started by: laknar
3 Replies

6. UNIX for Advanced & Expert Users

How often should I monitor the CPU and memory usage ?

Hi all, When you monitor the CPU and memory usage, how often do you do it ? Do it too often or too rarely will both cause the problem. So does anyone have hand-on experience ? And for my case, the requirement says that when CPU usage is above X% or memory usage is above Y%, I should reject... (5 Replies)
Discussion started by: qiulang
5 Replies

7. Infrastructure Monitoring

Monitoring CPU Usage with SNMP

Can someone please tell me how to calculate the CPU usage from what one gets back from snmpwalk? I have searched and dug through the internet and apparently, no one has the answer to this? i can use snmpwalk to pull out relevant information about cpu. but i have no clue what values are to be... (1 Reply)
Discussion started by: SkySmart
1 Replies

8. Shell Programming and Scripting

shell script to alert cpu memory and disk usage help please

Hi all can any one help me to script monitoring CPU load avg when reaches threshold value and disk usage if it exceeds some % tried using awk but when df -h out put is in two different lines awk doesnt work for the particular output in two different line ( output for df -h is in two... (7 Replies)
Discussion started by: robo
7 Replies

9. Shell Programming and Scripting

Get the memory and cpu usage

what is the best way to get the memory and cpu usage of a process on any system? this is relatively simple. however, i'm looking for a unified method that would work on linux, sunos, hpux, aix. ps -ef | egrep myprocess | awk '{print $4}' ---> there could be several instances of 'myprocess'... (3 Replies)
Discussion started by: SkySmart
3 Replies

10. Shell Programming and Scripting

Cpu and memory usage scripts

All I am writing a script to generate an email when cpu and memory usage is high for 5 min continuously help me urgent I wrote below scritpt LOAD=75.00 CPU_LOAD= 'sar -P all 300 5 |grep 'Average.all* '| awk -F " " '(print 100.0 -$NF)'' IF }; ECHO "pLEASE CHECK YOUR PROCESS ON YOUR... (1 Reply)
Discussion started by: anil529
1 Replies
PSTAT(8)						    BSD System Manager's Manual 						  PSTAT(8)

NAME
pstat, swapinfo -- display system data structures SYNOPSIS
pstat [-Tfghkmnst] [-M core [-N system]] swapinfo [-ghkm] [-M core [-N system]] DESCRIPTION
The pstat utility displays open file entry, swap space utilization, terminal state, and vnode data structures. If invoked as swapinfo the -s option is implied, and only the -k, -m, -g, and -h options are legal. If the -M option is not specified, information is obtained from the currently running kernel via the sysctl(3) interface. Otherwise, infor- mation is read from the specified core file, using the name list from the specified kernel image (or from the default image). The following options are available: -n Print devices out by major/minor instead of name. -h ``Human-readable'' output. Use unit suffixes when printing swap partition sizes: Byte, Kilobyte, Megabyte, Gigabyte, Terabyte and Petabyte. -k Print sizes in kilobytes, regardless of the setting of the BLOCKSIZE environment variable. -m Print sizes in megabytes, regardless of the setting of the BLOCKSIZE environment variable. -g Print sizes in gigabytes, regardless of the setting of the BLOCKSIZE environment variable. -T Print the number of used and free slots in several system tables. This is useful for checking to see how large system tables have become if the system is under heavy load. -f Print the open file table with these headings: LOC The core location of this table entry. TYPE The type of object the file table entry points to. FLG Miscellaneous state variables encoded thus: R open for reading W open for writing A open for appending I signal pgrp when data ready CNT Number of processes that know this open file. MSG Number of messages outstanding for this file. DATA The location of the vnode table entry or socket structure for this file. OFFSET The file offset (see lseek(2)). -s Print information about swap space usage on all the swap areas compiled into the kernel. The first column is the device name of the partition. The next column is the total space available in the partition. The Used column indicates the total blocks used so far; the Available column indicates how much space is remaining on each partition. The Capacity reports the percentage of space used. If more than one partition is configured into the system, totals for all of the statistics will be reported in the final line of the report. -t Print table for terminals with these headings: LINE Device name. INQ Number of characters that can be stored in the input queue. CAN Number of characters in the input queue which can be read. LIN Number of characters in the input queue which cannot be read yet. LOW Low water mark for input. OUTQ Number of characters that can be stored in the output queue. USE Number of bytes in the output queue. LOW Low water mark for output. COL Calculated column position of terminal. SESS Process ID of the session leader. PGID Process group for which this is the controlling terminal. STATE Miscellaneous state variables encoded thus: I init/lock-state device nodes present C callout device nodes present O opened c console in use G gone B busy in open(2) Y send SIGIO for input events L next character is literal H high watermark reached X open for exclusive use S output stopped (ixon flow control) l block mode input routine in use Z connection lost s i/o being snooped b busy in read(2) or write(2) The 'i' and 'o' characters refer to the previous character, to differentiate between input and output. -M Extract values associated with the name list from the specified core. -N If -M is also specified, extract the name list from the specified system instead of the default, which is the kernel image the system has booted from. SEE ALSO
ps(1), systat(1), stat(2), fs(5), iostat(8), vmstat(8) K. Thompson, UNIX Implementation. HISTORY
The pstat utility appeared in 4.0BSD. BUGS
Does not understand NFS swap servers. BSD
October 11, 2014 BSD
All times are GMT -4. The time now is 03:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy