- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Performance Testing
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2011 09:13 PM
04-06-2011 09:13 PM
Performance Testing
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2011 09:35 PM
04-06-2011 09:35 PM
Re: Performance Testing
If you have access to Command View EVA, you can get the details of your EVA storage..
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2011 11:49 PM
04-06-2011 11:49 PM
Re: Performance Testing
Thanks for the reply, i'm new to unix, pls tell clearly how to check the ram process and usage of ram.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2011 11:52 PM
04-06-2011 11:52 PM
Re: Performance Testing
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
Shibin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2011 12:36 AM
04-07-2011 12:36 AM
Re: Performance Testing
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2011 02:09 AM
04-07-2011 02:09 AM
Re: Performance Testing
Tell me any other way to check.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2011 07:59 AM
04-07-2011 07:59 AM
Re: Performance Testing
# sar -a
that should provide some information.
type
# man sar
To explain what the parameters mean.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2011 09:01 PM
04-07-2011 09:01 PM
Re: Performance Testing
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2011 11:54 PM
04-07-2011 11:54 PM
Re: Performance Testing
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2011 02:38 AM
04-08-2011 02:38 AM
Re: Performance Testing
if you're used to the task manager, then the "top" command is your choice
Unix operates with beer.