Operating System - OpenVMS
1748204 Members
4171 Online
108759 Solutions
New Discussion

T4 and memory pool metrics

 
SOLVED
Go to solution
Thomas Ritter
Respected Contributor

T4 and memory pool metrics

Unless I am mistaken, T4 is not collecting pool metrics. Is anyone aware of the existence of T4 data collectors which collect on
Nonpaged Dynamic Memory
Paged Dynamic Memory
Lock Manager Dyn Memory to name a few ?


1 REPLY 1
John Gillings
Honored Contributor
Solution

Re: T4 and memory pool metrics

Thomas,

I'm not aware of any off the shelf. It's fairly easy to roll your own. Write a T4 header, then a loop around:

$ write sys$output f$time(),",",f$getsyi("NPAGED_FREE"),",",f$getsyi("PAGED_FREE")

add any other stats you're interested in.

Alternatively, pipe the output of SHOW MEM/POOL into a procedure to parse it into a CSV line

Example attached, cursory testing, I'm sure you'll get the idea. (based on RTR monitoring code we run)
A crucible of informative mistakes