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
06-17-2005 07:18 AM
06-17-2005 07:18 AM
IO Count
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 08:06 AM
06-17-2005 08:06 AM
Re: IO Count
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 08:11 AM
06-17-2005 08:11 AM
Re: IO Count
You can get the operation count for a device using the F$GETDVI lexical function.
The byte count is somewhat harder. You can get the byte counts for the process, but that will be a crude approximation whose accuracy will depend on the details of file size and other factors including fragmentation.
Possibly, you could do a BACKUP/LIST command and analyze the output (both the blocksize and the number of blocks are part of the output).
I hope that the above is helpful.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 08:40 AM
06-17-2005 08:40 AM
Re: IO Count
/LOG
/JOURNAL [=filename]
SPAWN of a procedure that runs BACKUP, consult ACC/FULL afterwards (limit output with /SINCE=time of start /BEFORE==end of job. /TYPE=SUBPROCESS /USER= you), the output of tyhe job will show info (including somewhat more). You _could_ force SET ACC/IMAGE before and SET ACC/NOIMAGE when done and look for BACKUP.EXE itself
SHOW PROCESS/FULL to get current state, run backup and do the same; calculate
These two are not exact, but the number of IO/s and bytes written by backup will be huge compared to the numbers extra for startup and initialisation.
(Running backup/journal at the moment, will tell results when finished)
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 09:33 AM
06-17-2005 09:33 AM
Re: IO Count
If you do it interactively, you will have to search for the accounting record, and it will give you that information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 07:23 PM
06-17-2005 07:23 PM
Re: IO Count
Assuming intactive backup you can store your process counter
$ SH PROC /QUOTA/OUT=myQuotaBefore.log
you can make backup and then review quotas
$ SH PROC /QUOTA/OUT=myQuotaAfter.log
However, counters are either disk either tape worths.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2007 03:00 AM
02-26-2007 03:00 AM