Operating System - HP-UX
1753785 Members
7637 Online
108799 Solutions
New Discussion юеВ

To check the kernel table PROC utilisation

 
SOLVED
Go to solution
arun khatwani
Frequent Advisor

To check the kernel table PROC utilisation

I got the following error msg on my system
kernel table PROC more than 70.0 full
Can anybody help me out that how should i check the proc table utilisation .
7 REPLIES 7
Ganesan R
Honored Contributor

Re: To check the kernel table PROC utilisation

Hi Arun,

Use #sar -v 2 2 to see proc utilisation in real time. output will be like below.

11:36:44 text-sz ov proc-sz ov inod-sz ov file-sz ov
11:36:46 N/A N/A 365/4096 0 2366/34816 0 5098/63498 0
11:36:48 N/A N/A 364/4096 0 2365/34816 0 5094/63498 0


look at the value proc-sz. First is current utilisation and the next one is defined value in kernel.

Best wishes,

Ganesh.
Dennis Handly
Acclaimed Contributor

Re: To check the kernel table PROC utilisation

On 11.23, kcusage(1m) will also tell you.
arun khatwani
Frequent Advisor

Re: To check the kernel table PROC utilisation

what will be the command can you describe in detail
sujit kumar singh
Honored Contributor
Solution

Re: To check the kernel table PROC utilisation

the command to know the usage of any Kernel tunable is


#kcusage

eg
#kcusage nproc
sujit kumar singh
Honored Contributor

Re: To check the kernel table PROC utilisation

#kcusgae -- shows the usage of all tunables
#kcusgae -l ---- long lisst of tnable setting and current usage
#kcusage -l nproc --- u get the usahe details in liong format for nproc


etc etc
Dennis Handly
Acclaimed Contributor

Re: To check the kernel table PROC utilisation

>what will be the command

Check the man page. By default it will show all of them. Then you can grep:
kcusage | grep proc
sujit kumar singh
Honored Contributor

Re: To check the kernel table PROC utilisation

kcusgae -t gives the top 5 processes that r using that tunable also kcusage -h -d etc can give u the report on a timely basis for the system like when was what utilisation of which parameter.


rfer to manpages of kcusage also

Sujit