summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2021-10-05 14:53:26 +0300
committerGitHub <noreply@github.com>2021-10-05 14:53:26 +0300
commit6aa0634bd30bfcaaf6bca8f402fac529bdb3f32a (patch)
tree17d413f7ae978147e72dc3044eb348624ce03e65 /web
parent27354a2b95d8d564678447f66d523c84a9e284b2 (diff)
add sys_class_power_supply charts info (#11619)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js23
1 files changed, 19 insertions, 4 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index c3b2dc427f..939017ea45 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -4329,19 +4329,34 @@ netdataDashboard.context = {
// Power Supplies
'powersupply.capacity': {
- info: undefined
+ info: 'The current battery charge.'
},
'powersupply.charge': {
- info: undefined
+ info: '<p>The battery charge in Amp-hours.</p>'+
+ '<p><b>now</b> - actual charge value. '+
+ '<b>full</b>, <b>empty</b> - last remembered value of charge when battery became full/empty. '+
+ 'It also could mean "value of charge when battery considered full/empty at given conditions (temperature, age)". '+
+ 'I.e. these attributes represents real thresholds, not design values. ' +
+ '<b>full_design</b>, <b>empty_design</b> - design charge values, when battery considered full/empty.</p>'
},
'powersupply.energy': {
- info: undefined
+ info: '<p>The battery charge in Watt-hours.</p>'+
+ '<p><b>now</b> - actual charge value. '+
+ '<b>full</b>, <b>empty</b> - last remembered value of charge when battery became full/empty. '+
+ 'It also could mean "value of charge when battery considered full/empty at given conditions (temperature, age)". '+
+ 'I.e. these attributes represents real thresholds, not design values. ' +
+ '<b>full_design</b>, <b>empty_design</b> - design charge values, when battery considered full/empty.</p>'
},
'powersupply.voltage': {
- info: undefined
+ info: '<p>The power supply voltage.</p>'+
+ '<p><b>now</b> - current voltage. '+
+ '<b>max</b>, <b>min</b> - voltage values that hardware could only guess (measure and retain) the thresholds '+
+ 'of a given power supply. '+
+ '<b>max_design</b>, <b>min_design</b> - design values for maximal and minimal power supply voltages. '+
+ 'Maximal/minimal means values of voltages when battery considered "full"/"empty" at normal conditions.</p>'
},
// ------------------------------------------------------------------------