-
-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Watch CPU frequency in near real time. #132
Comments
Glad to hear this! In that case I'm marking this as a [request]. I think this feature would be perfectly implemented as part of what's requested in #87 I don't know when I'll have time to implement this feature, so if you're up and know bit of Python please make the changes yourself and submit a PR. I'll be glad to do the code review. If anything you'll be given credit as part of Releases :) |
Two things to consider:
|
Tat's an excellent point @netikras and same conclusion I came to when I was thinking about this last time. Definitely something to keep on mind if we go forward with implementation of one this feature request. |
In latest release 1.9.4, changes have been made where auto-cpufreq will refresh frequencies in (near) real time and counter has been removed. Refresh rate is still around every 3-4 seconds, as through my analysis and testing anything below this timeframe will only cause tool to use unnecessary amount of resources, which would defeat purpose of this tool. With that said I'll close this feature request. |
This is not an issue, I just want to share this code snippet for monitoring CPU frequency in almost realtime. I use auto-cpufreq on all my Linux devices, even desktops and it is always nice to see if it is working properly or not. Note: I found this code months ago and unfortunately I don't know whom to give credit.
Just run this command from the terminal
watch -n.1 "cat /proc/cpuinfo | grep \"^[c]pu MHz\""
The text was updated successfully, but these errors were encountered: