-
Couldn't load subscription status.
- Fork 16
Description
I applied manually all the patches and included all the sensors that I can get via sensors -j.
The "bar visual" works, however, instead of something like:
CPU temp 39ºC (crit: 100ºC)
I see:
CPU temp NaN%
It looks like the calculation for the bar length size is done correctly, but not for the values display?
Or I'm missing something ?
Tks!
This is for example my CPU:
"coretemp-isa-0000":{
"Adapter": "ISA adapter",
"Package id 0":{
"temp1_input": 42.000,
"temp1_max": 100.000,
"temp1_crit": 100.000,
"temp1_crit_alarm": 0.000
},
which seems to be the default as per the patch files, so I didn't changed anything there.
so Nodes.pm is
cputemp => {
jsonpath => ['coretemp-isa-0000', 'Package id 0'],
valkey => 'temp1_input',
critkey => 'temp1_crit',
},
and I also kept pvemanagerlib.js:
{
itemId: 'cputemp',
iconCls: 'fa fa-fw fa-thermometer-half',
title: gettext('CPU temp'),
valueField: 'cputemp',
maxField: 'cputemp',
renderer: Proxmox.Utils.render_node_temp,
},