ClementTsang / bottom

Yet another cross-platform graphical process/system monitor.
https://clementtsang.github.io/bottom
MIT License
10.27k stars 245 forks source link

CPU Frequencies #568

Open what-next-github opened 3 years ago

what-next-github commented 3 years ago

Describe the feature request

Adding CPU frequencies to the CPU Chart would be nice. I'm not sure if having the CPU governor listed would be necessarily as useful (or where that would fit into the chart).

xmo-odoo commented 2 years ago

Supporting this, CPU frequency is very useful when paired with package temperatures, it provides useful insight into system behaviour and perf profile.

yozachar commented 8 months ago
watch -n 1 "grep \"^[c]pu MHz\" /proc/cpuinfo"
RokeJulianLockhart commented 8 months ago

https://github.com/ClementTsang/bottom/issues/568#issuecomment-2001893574

@yozachar, worth prefixing that with sh like

sh -c 'watch -n 1 "grep \"^[c]pu MHz\" /proc/cpuinfo"'

since it doesn't work in some non-POSIX other shells like PS:

  1. watch -n 1 "grep \"^[c]pu MHz\" /proc/cpuinfo"
  2. ```log Every 1.0s: grep \ ^[c]pu MHz\ /proc/cpuinfo s1e8h4: Sat Mar 16 10:37:50 2024 grep: MHz /proc/cpuinfo: No such file or directory ```