Sponsored Content
Top Forums Shell Programming and Scripting Capturing computational/non computational memory from topas Post 302890096 by bakunin on Tuesday 25th of February 2014 07:17:27 AM
Old 02-25-2014
Quote:
Originally Posted by Nowshath
Topas is performance monitoring tool in AIX, so that i ask you how to capture the % Comp and % noncomp from topas command.
Yes, but "topas" is designed for interactive use only. If you want to skim the values from some output stream you should use "vmstat" rather than "topas" because "vmstat"s output is a character stream whereas "topas"s output is full of control characters necessary for the screen control.

First: what is computational and non-computational memory? Memory is allocated controlled by some "vmo" (see "man vmo") tunables: "minperm%", "maxperm%", "minclient", "maxclient", "lrud_file_repage", ... Basically the AIX kernel tries to put otherwise unused memory to some use dedicating some part (the tunables control how big this part is) of it to the file cache. "Computational memory" is the part of the memory in use given to running processes. "Non-Computational memory" is the memory used for file cache (and a few other buffers of minor significance). Together, computational and non-computational memory is "used memory".

"minperm%" and "maxperm%" control when and under which circumsteances non-computational memory is changed to computational memory and vice versa (which is done by the lrud-daemon), "numperm%" tells you, where - in between minperm and maxperm - you are right now.

After this rather lengthy explanations, here is a sample output of "vmstat -v" (AIX 7.1, idle system):

Code:
# vmstat -v 
             15073280 memory pages
             12080419 lruable pages
             13429620 free pages
                    3 memory pools
               850498 pinned pages
                 95.0 maxpin percentage
                  3.0 minperm percentage
                 90.0 maxperm percentage
                  4.4 numperm percentage
               536202 file pages
                  0.0 compressed percentage
                    0 compressed pages
                  4.4 numclient percentage
                 90.0 maxclient percentage
               536202 client pages
                    0 remote pageouts scheduled
                    5 pending disk I/Os blocked with no pbuf
                    0 paging space I/Os blocked with no psbuf
                 1972 filesystem I/Os blocked with no fsbuf
                    0 client filesystem I/Os blocked with no fsbuf
                    0 external pager filesystem I/Os blocked with no fsbuf
                  7.3 percentage of memory used for computational pages

I have marked the relevant lines bold: numperm percentage is the (%) amount of memory currently used by the file cache. Compare this to the number of totally allocated pages and you get the sizes of computational and non-computational memory. Note, that some numbers are percentages, some numbers are memory pages! Memory pages can be various sizes in AIX, but the most common are 4k. So, for instance, "2500" is roughly 10M.

I hope this helps.

bakunin
 

7 More Discussions You Might Find Interesting

1. AIX

Memory usage statistic? (topas, nmon)

hi, how can i diplay: - the ammount RAM used /free - ammount of ram used from a pid or prozess we have the problem, that malloc is returing a NULL pointer errno = 12 ( not enough space). but i think there is still ram free. nmon : shows all memory used ? Memory Use Physical Virtual... (7 Replies)
Discussion started by: Lazzar
7 Replies

2. UNIX for Advanced & Expert Users

Need Help installing a Computational Tool Kit

Hi ! I have been trying to install IMSL Computational Tool Kit on a server. It is a Lunix Redhat V.4 with Intel pentium d processor and Intel fortran compiler 8.1 and the type of command shell we run is bash. I dont know if the problem is with the Installation or the Lunix system. I have... (1 Reply)
Discussion started by: dsmv
1 Replies

3. Cybersecurity

Computational complexity

This is a general question about the practical use of computational complexity in security. Wikipedia has a good article about the theoretical background of computational complexity. In the course of conversation with colleagues, a topic that is brought up occassionally is the security of any... (2 Replies)
Discussion started by: gratuitous_arp
2 Replies

4. Emergency UNIX and Linux Support

Appending the contents of two files in computational manner

Hi, I have two files say file 1 file 2 File1 1 2 4 5 File 2 asdf adf How to get the ouput something like asdf1 adf1 asdf2 adf2 asdf4 adf4 asdf5 (5 Replies)
Discussion started by: ecearund
5 Replies

5. AIX

topas - computational memory 95% : Any Impact?

Hello Gurus, I am using AIX 5 and on running topas command. I can see the computational memory is 93.3% with Swap Paging memory at 2.2%. Could you please advise if there is any impact by the growth of computational memory? Below is the stat: MEMORY Real,MB 22528 % Comp 93.3 %... (12 Replies)
Discussion started by: panchpan
12 Replies

6. AIX

How to use topas to display its Memory section alone

Hi, I'm planning to write a script to monitor the memory utilization and so decided to use topas. i'm not familiar with this command Could anyone help me with an idea on how to display the Memory section alone in the topas... :) It will be very helpful if you could specify the command... (2 Replies)
Discussion started by: kaushik_87
2 Replies

7. Shell Programming and Scripting

Shell script for %computational memory & % non computational memory

Dear, How to calculate %computational memory and %non computational memory from AIX server. What command used to find out %computational memory and % non computational memory except topas. Regards Nowshath (1 Reply)
Discussion started by: Nowshath
1 Replies
PCAP_SET_TSTAMP_TYPE(3PCAP)											       PCAP_SET_TSTAMP_TYPE(3PCAP)

NAME
pcap_set_tstamp_type - set the time stamp type to be used by a capture device SYNOPSIS
#include <pcap/pcap.h> int pcap_set_tstamp_type(pcap_t *p, int tstamp_type); DESCRIPTION
pcap_set_tstamp_type() sets the the type of time stamp desired for packets captured on the pcap descriptor to the type specified by tstamp_type. It must be called on a pcap descriptor created by pcap_create() that has not yet been activated by pcap_activate(). pcap_list_tstamp_types() will give a list of the time stamp types supported by a given capture device. See pcap-tstamp(7) for a list of all the time stamp types. RETURN VALUE
pcap_set_tstamp_type() returns 0 on success if the specified time stamp type is expected to be supported by the capture device, PCAP_WARN- ING_TSTAMP_TYPE_NOTSUP on success if the specified time stamp type is not supported by the capture device, PCAP_ERROR_ACTIVATED if called on a capture handle that has been activated, and PCAP_ERROR_CANTSET_TSTAMP_TYPE if the capture device doesn't support setting the time stamp type. SEE ALSO
pcap(3PCAP), pcap_list_tstamp_types(3PCAP), pcap_tstamp_type_name_to_val(3PCAP), pcap-tstamp(7) 21 August 2010 PCAP_SET_TSTAMP_TYPE(3PCAP)
All times are GMT -4. The time now is 09:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy