HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- monitoring bufcache without glance
Operating System - HP-UX
1838703
Members
3497
Online
110128
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
08-21-2002 11:27 PM
08-21-2002 11:27 PM
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 11:30 PM
08-21-2002 11:30 PM
Solution
Heres a little script to display bufcache size every 15 mins;
#!/bin/ksh
while true
do
DATESTAMP=`date +"%d-%m-%Y.%H:%M".%S`
CURRENT=`sysdef|grep bufpages|awk '{print $2}'`
(( BUF_IN_MB=(CURRENT*4) / 1024 ))
print "$BUF_IN_MB MB at $DATESTAMP"
sleep 15
done
#!/bin/ksh
while true
do
DATESTAMP=`date +"%d-%m-%Y.%H:%M".%S`
CURRENT=`sysdef|grep bufpages|awk '{print $2}'`
(( BUF_IN_MB=(CURRENT*4) / 1024 ))
print "$BUF_IN_MB MB at $DATESTAMP"
sleep 15
done
Im from Palmerston North, New Zealand, but somehow ended up in London...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 11:38 PM
08-21-2002 11:38 PM
Re: monitoring bufcache without glance
Hi
Using sar
sar -b 10 100
Will collect every 10 seconds 100 times - see man sar.
HTH
Paula
Using sar
sar -b 10 100
Will collect every 10 seconds 100 times - see man sar.
HTH
Paula
If you can spell SysAdmin then you is one - anon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2002 09:44 AM
08-23-2002 09:44 AM
Re: monitoring bufcache without glance
You can use sar as Paula said and have the results save to file. see sar man pages.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP