Summary: | ACPI Thermal-Zone Temp Graph - temp9A0 is not a vname nor a number | ||
---|---|---|---|
Product: | IPFire | Reporter: | IPcopMann <opensysman> |
Component: | --- | Assignee: | Leo Hofmann <hofmann> |
Status: | CLOSED FIXED | QA Contact: | |
Severity: | Minor Usability | ||
Priority: | - Unknown - | CC: | bbitsch, michael.tremer, peter.mueller, siosios1 |
Version: | 2 | ||
Hardware: | x86_64 | ||
OS: | Unspecified | ||
Attachments: | Screen grab Status > Hardware Graphs |
Description
IPcopMann
2022-06-28 16:21:11 UTC
@Leo: Is this something for you? My first guess would be that the board is reporting faulty or non-existent sensors? The ACPI thermal-zone data should be logged in this directory: /var/log/rrd/collectd/localhost/thermal-thermal_zone* Could you please check if there is meaningful RRD data there? I think this is the collectd plugin with which the data is logged: https://collectd.org/wiki/index.php/Plugin:thermal This is also happening on cpu frequency on my equiptment, see my post below https://community.ipfire.org/t/cpufreq-graph-error/8246 Hi siosios, thanks for figuring out the problem with the colors. I would have never thought of that. I'll be able to start working on this soon :) I used rrddump to look at data files and all had just NaN entries (i.e. sensor failure). Followed instructions to find new sensor hardware: https://wiki.ipfire.org/installation/hardware-change Newly recreated files still have NaN entries back to 2021, here is a sample extract: <!-- 2022-07-18 08:29:00 BST / 1658129340 --> <row><v>NaN</v></row> <!-- 2022-07-18 15:48:00 BST / 1658155680 --> <row><v>NaN</v></row> <!-- 2022-07-18 23:07:00 BST / 1658182020 --> <row><v>NaN</v></row> <!-- 2022-07-19 06:26:00 BST / 1658208360 --> <row><v>NaN</v></row> <!-- 2022-07-19 13:45:00 BST / 1658234700 --> <row><v>NaN</v></row> <!-- 2022-07-19 21:04:00 BST / 1658261040 --> <row><v>NaN</v></row> <!-- 2022-07-20 04:23:00 BST / 1658287380 --> <row><v>NaN</v></row> <!-- 2022-07-20 11:42:00 BST / 1658313720 --> <row><v>NaN</v></row> <!-- 2022-07-20 19:01:00 BST / 1658340060 --> <row><v>NaN</v></row> <!-- 2022-07-21 02:20:00 BST / 1658366400 --> <row><v>2.0000000000e+01</v></row> <!-- 2022-07-21 09:39:00 BST / 1658392740 --> <row><v>2.0000000000e+01</v></row> <!-- 2022-07-21 16:58:00 BST / 1658419080 --> <row><v>2.0000000000e+01</v></row> Fairly sure that's what's tripping up graphs. Is there an easy way to delete old entries? I did a temporary fix for the cpufreq graph issue by limiting the number of cpu's it shows. I have updated my post listed above that shows what I've done. Updated my post as to what I’ve found. Sorry, I never learnt how to create patches otherwise I would submit it. It is indeed just the selection of colors. A code sequence for i = 0..#cpus { j= i+1 .... colors{'color1'.j} ... } produces legal indices into colors{} ( keys 'color1'...'color25' ) for i = 0..8 only. Replacing j by i functions for #cpus<=25. Whether the colors are suitable has to be checked. |