I am trying to gather statistics via kstat which I currently use dtrace to gather.
It is not count based information but new data every single time.
The minimum interval on kstat print is 1 second.However ,the data that I need changes several times within a second.Is there a way(API) to get data from kstat whenever the kstat is updated that doesn't use dtrace ?
Outside with
dtrace
, there is no way to get the statistics when they are updated however, the C libkstat API allows retrievingkstat
statistics with an arbitrary sub second sampling rate.There is also a perl api should you want to do it with scripting.
A very simple way to use it would be to create a customized
kstat
command (which happen to already be a perl script leveraging the kstat perl api) and modify it to use high resolution timers instead of the default one, e.g.: