We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/madrisan/nagios-plugins-linux/blob/2ea02e2173a4307a051a7ae97c7867da7e6ac70a/plugins/check_cpufreq.c#L135C25-L135C31
case 'G': factor = 1.0/100000; break;
this should be 1.0/10^6 and not 1.0/10^5
root:/usr/lib/nagios/plugins# ./check_cpufreq -M cpufreq (Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz) OK | cpu0_freq=2722;;;1200;3100 <snip> root:/usr/lib/nagios/plugins# ./check_cpufreq -G cpufreq (Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz) OK | cpu0_freq=28;;;12;31 <snip>
The text was updated successfully, but these errors were encountered:
Good catch! Thanks.
Sorry, something went wrong.
madrisan
Successfully merging a pull request may close this issue.
https://github.com/madrisan/nagios-plugins-linux/blob/2ea02e2173a4307a051a7ae97c7867da7e6ac70a/plugins/check_cpufreq.c#L135C25-L135C31
this should be 1.0/10^6 and not 1.0/10^5
The text was updated successfully, but these errors were encountered: