1830251 Members
2667 Online
110000 Solutions
New Discussion

Re: Performance Testing

 
Suriya Prakash
Regular Advisor

Performance Testing

Hi,

I have a HP Integrity rx2660 server and EVA 4400 storage. I want to check the performance of the server like ram usage, processor usage and free hard disk space. and i also want to check the EVA performance, space allocated to EVA, space used and space free.

Pls guide me to check this.

Regards,
Suriya.
9 REPLIES 9
sen_ux
Valued Contributor

Re: Performance Testing

If you have Glance installed on your server, you can get all these details. Else use native commands like top,sar, vmstat, iostat etc..

If you have access to Command View EVA, you can get the details of your EVA storage..

Thanks
Suriya Prakash
Regular Advisor

Re: Performance Testing

Hi,
Thanks for the reply, i'm new to unix, pls tell clearly how to check the ram process and usage of ram.
Thanks
Shibin_2
Honored Contributor

Re: Performance Testing

check whether glance installed.

swlist |grep -i glance

If installed, execute the below command to check your memory, cpu etc usage.

glance

Otherwise, you can use the command top

Regards
Shibin
Viktor Balogh
Honored Contributor

Re: Performance Testing

Hi,

once you're in glance, press a "?" to see the options. There are one-letter shortcuts to each tables, so e.g. to see disk performance type "d". This is the screen you'll get by pressing "?"

a All CPUs Detail Screen
c CPU Detail Screen
d Disk Detail Screen
g Global Screen
i Disk I/O by File System Screen
k Diskless Server Resource Utilization Screen
l LAN Detail Screen
m Memory Detail Screen
N Global NFS Activity Screen
n NFS by System Screen
t System Table Utilization Screen
u Disk Queue Lengths Screen
v Logical Volume Detail Screen
w Swap Detail Screen
? Commands Menu _
S Select a NFS system
s Select a single process
F Open Files Screen for a process
M Memory Regions Screen for a process
R Process Resource Summary
W Wait States Screen for a process _
b Scroll page backward
f Scroll page forward
h Online help
j Adjust refresh interval
o Adjust process threshold
p Print toggle
q Quit GlancePlus
r Refresh the current screen
y Renice a process
z Reset statistics to zero
> Display next logical screen
< Display previous screen
! Invoke a shell
****
Unix operates with beer.
Suriya Prakash
Regular Advisor

Re: Performance Testing

Glance is not installed on my server.
Tell me any other way to check.
Paul Procter
Frequent Advisor

Re: Performance Testing

type
# sar -a

that should provide some information.

type
# man sar

To explain what the parameters mean.
Suriya Prakash
Regular Advisor

Re: Performance Testing

Hi,

My question is simple, how to check the usage of processor and RAM. for whick process it takes more ram and processor. like we check in task manager of windows machine.

Thanks.
Shrikant Kale
New Member

Re: Performance Testing

Hi,
You can use glance to monitor the performance and if you see more memory and CPU utilisation then you can use following commands to check the high resource utilizing processes.

to check high memory processes

UNIX95= ps -ef -o "vsz,pid,user,pcpu,args"|sort -rn -k1 |head -30

for high CPU

UNIX95= ps -ef -o pcpu="CPU %" -o ruser=USER -o pid,args|sort -rk1|head -30
Viktor Balogh
Honored Contributor

Re: Performance Testing

> like we check in task manager of windows machine.

if you're used to the task manager, then the "top" command is your choice
****
Unix operates with beer.