- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Memory benchmarking tools
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
02-03-2004 03:57 AM
02-03-2004 03:57 AM
I want to produce memory utilization numbers specifically, but any extra stats would help. Thanks in advance for your replies.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2004 04:01 AM
02-03-2004 04:01 AM
Solution# memdetail
Memory Stat total used avail %used
physical 10080.0 9737.5 342.5 97%
active virtual 9586.4 4655.6 4930.8 49%
active real 7257.5 3446.8 3810.7 47%
memory swap 7697.1 1664.7 6032.5 22%
device swap 26528.0 9298.5 17229.5 35%
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2004 04:08 AM
02-03-2004 04:08 AM
Re: Memory benchmarking tools
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2004 04:16 AM
02-03-2004 04:16 AM
Re: Memory benchmarking tools
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2004 04:57 AM
02-03-2004 04:57 AM
Re: Memory benchmarking tools
See if you have Measureware installed "/opt/perf/bin/extract". If so, you can get good details on your memory stats with the following script.
Adjust FROM and TO and you will get stats during that time frame into a file called stats.out
#!/usr/bin/ksh
FROM=02/01/04
TO=02/04/04
LOG=stats.out
cat << EOF > /tmp/mwa$$
FORMAT ASCII
HEADINGS ON
SEPARATOR="|"
MISSING=0
DATA TYPE GLOBAL
DATE
TIME
GBL_MEM_UTIL
GBL_MEM_USER_UTIL
GBL_SWAP_SPACE_UTIL
GBL_MEM_PAGEOUT_RATE
GBL_MEM_SWAPOUT_RATE
TBL_BUFFER_CACHE_USED
GBL_MEM_QUEUE
EOF
/opt/perf/bin/extract -gG -r /tmp/mwa$$ -b $FROM -e $TO -xp -f $LOG
rm -f /tmp/mwa$$
-Sri