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
AMD Ryzen 1600X sensors doesn't have a per core readout so the sed/awk script fails:
$ sensors k10temp-pci-00c3 Adapter: PCI adapter Tctl: +56.6°C Tdie: +36.6°C
Add a variable/option to use the Tdie readout instead.
Tdie
In my case sensors | sed -n 's/Tdie:\s*+//p' is enough.
sensors | sed -n 's/Tdie:\s*+//p'
The text was updated successfully, but these errors were encountered:
Thanks for the report. I guess we could fallback on Tdie if no Tccd/Core are found in sensors output.
Tccd/Core
sensors
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Problem
AMD Ryzen 1600X sensors doesn't have a per core readout so the sed/awk script fails:
Proposed solution
Add a variable/option to use the
Tdie
readout instead.In my case
sensors | sed -n 's/Tdie:\s*+//p'
is enough.The text was updated successfully, but these errors were encountered: