- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sar -v output
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-03-2003 12:09 AM
04-03-2003 12:09 AM
sar -v output
Is there any (easy) way of having the info returned by sar -v in a porcentual way?
tia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 01:03 AM
04-03-2003 01:03 AM
Re: sar -v output
I would install Glance Plus which is more efficient and easy to understand. The Trial version should be in one of your CDs.
Hope this help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 01:29 AM
04-03-2003 01:29 AM
Re: sar -v output
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 06:12 AM
04-03-2003 06:12 AM
Re: sar -v output
sar -v 5 5 is typical. reports every 5 seconds through report 1 to 5.
Here a quick cron for a history of sar every hour of the day, 365 days of the year.
00 * * * * sar -v 5 5 >> /tmp/sar_report
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 06:33 AM
04-03-2003 06:33 AM
Re: sar -v output
I think it might help.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 07:00 AM
04-03-2003 07:00 AM
Re: sar -v output
sar -v 1 11 | awk '
{
if ($2 != "N/A") next;
split ($4, f, "\/"); printf ("proc-sz %d%, ", f[1] / f[2] *100 +.5);
split ($6, f, "\/"); printf ("inode-sz %d%, ", f[1] / f[2] *100 +.5);
split ($8, f, "\/"); printf ("file-sz %d%\n", f[1] / f[2] *100 +.5);
}'
Please note that looking at inode-sz does not make sense at all.
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 07:07 AM
04-03-2003 07:07 AM
Re: sar -v output
http://cfg2html.port5.com/index.html
Rgds...Geoff