Memory Usage Monitor on Linux/SunOS Servers


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Memory Usage Monitor on Linux/SunOS Servers
# 1  
Old 12-15-2010
Memory Usage Monitor on Linux/SunOS Servers

ok, so i'm trying to write a shell script (not perl) that monitors memory usage on a server. but i'm confused as to what fields exactly determines that yes, memory is low on a particular server.

it sounds simple enough, but it really isn't. what do I look for in the field below?

Code:
[hostname:527] 
[hostname:527] snmpwalk -v2c -c bla@$AF s54.jabla.net UCD-SNMP-MIB::memory    
UCD-SNMP-MIB::memIndex.0 = INTEGER: 0
UCD-SNMP-MIB::memErrorName.0 = STRING: swap
UCD-SNMP-MIB::memTotalSwap.0 = INTEGER: 2040212 kB
UCD-SNMP-MIB::memAvailSwap.0 = INTEGER: 2036260 kB
UCD-SNMP-MIB::memTotalReal.0 = INTEGER: 8314956 kB
UCD-SNMP-MIB::memAvailReal.0 = INTEGER: 302620 kB
UCD-SNMP-MIB::memTotalFree.0 = INTEGER: 2338880 kB
UCD-SNMP-MIB::memMinimumSwap.0 = INTEGER: 16000 kB
UCD-SNMP-MIB::memShared.0 = INTEGER: 0 kB
UCD-SNMP-MIB::memBuffer.0 = INTEGER: 203980 kB
UCD-SNMP-MIB::memCached.0 = INTEGER: 4031680 kB
UCD-SNMP-MIB::memSwapError.0 = INTEGER: noError(0)
UCD-SNMP-MIB::memSwapErrorMsg.0 = STRING: 
[hostname:528] 
[hostname:528]

# 2  
Old 12-15-2010
With VM, low memory is excess paging. Memory only shows as free because a process exited and released their swap, or the system was recently rebooted, and so indicates nothing. If a process mmap's files, like dynamic libraries, those pages are still in use for that even though not assigned to any process! When no memory is free and you need a page, it just takes the least used and unmodified page from whoever was using it, and if anyone references that page, it will take a RAM page from some other VM page and read the requested VM page back in to it.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Please help me to monitor cpu usage vmstat in Redhat Linux .

Hi , Please some one help me How to write a shell script to monitor cpu usage vmstat in Redhat linux . Thanks, (4 Replies)
Discussion started by: saanvi
4 Replies

2. AIX

Monitor Physical CPU usage on multiple servers

Hello, Looking for some help. I am trying to gather data at each server showing when the physical CPU is being used the most based on a weekly timeframe. I know this data can be seen through NMON but with multiple servers in our environment it could take a real long time. is there a easier... (4 Replies)
Discussion started by: audis$
4 Replies

3. UNIX for Dummies Questions & Answers

What to monitor for memory usage?

hi guys I am having a doubt about memory monitoring on linux system what I should be monitoring? memory usage? o swap usage? I am using some monitoring tools but I am confused to what monitor for alerting for example this case looks the memory usage is very high and it's like that all... (2 Replies)
Discussion started by: karlochacon
2 Replies

4. Linux

Internet Usage Monitor for Linux

I have installed Ubuntu and i want to monitor the internet usage. Is there any software for linux for monitoring the internet usage? (preferabaly opensource) (1 Reply)
Discussion started by: vkca
1 Replies

5. UNIX for Advanced & Expert Users

Linux: monitor memory used for network buffers

/proc/net/sockstat has mem value, Is it memory used for network buffers? Is it KB or MB? $ cat /proc/net/sockstat sockets: used 8278 TCP: inuse 1090 orphan 2 tw 18 alloc 1380 mem 851 UDP: inuse 6574 RAW: inuse 1 FRAG: inuse 0 memory 0 or any other command to montior network... (3 Replies)
Discussion started by: honglus
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. 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

8. 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

9. 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
Login or Register to Ask a Question