diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-08 07:30:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-08 07:30:37 +0000 |
commit | 8a7b72f7cd1ccd547a03eb4243294e741d661d3f (patch) | |
tree | 7bc7be4a8e9e298daa1349348400aa2a653866f2 /web/gui/dashboard_info.js | |
parent | New upstream version 1.11.1+dfsg (diff) | |
download | netdata-8a7b72f7cd1ccd547a03eb4243294e741d661d3f.tar.xz netdata-8a7b72f7cd1ccd547a03eb4243294e741d661d3f.zip |
Adding upstream version 1.12.0.upstream/1.12.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | web/gui/dashboard_info.js | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js index 2f542d43..00cac631 100644 --- a/web/gui/dashboard_info.js +++ b/web/gui/dashboard_info.js @@ -1,5 +1,8 @@ // SPDX-License-Identifier: GPL-3.0-or-later +// Codacy declarations +/* global NETDATA */ + var netdataDashboard = window.netdataDashboard || {}; // Informational content for the various sections of the GUI (menus, sections, charts, etc.) @@ -436,10 +439,10 @@ netdataDashboard.menu = { info: undefined }, - 'linux_power_supply': { + 'powersupply': { title: 'Power Supply', icon: '<i class="fas fa-battery-half"></i>', - info: 'Statistics for the various system power supplies.' + info: 'Statistics for the various system power supplies. Data collected from <a href="https://www.kernel.org/doc/Documentation/power/power_supply_class.txt">Linux power supply class</a>.' } }; @@ -647,7 +650,7 @@ netdataDashboard.context = { }, 'system.swapio': { - info: 'Total Swap I/O. (netdata measures both <code>in</code> and <code>out</code>. If either of them is not shown in the chart, it is because it is zero - you can change the page settings to always render all the available dimensions on all charts).' + info: 'Total Swap I/O. (netdata measures both <code>in</code> and <code>out</code>. If either of the metrics <code>in</code> or <code>out</code> is not shown in the chart, the reason is that the metric is zero. - you can change the page settings to always render all the available dimensions on all charts).' }, 'system.pgfaults': { @@ -2315,6 +2318,25 @@ netdataDashboard.context = { 'proxysql.commands_duration': { info: 'The total time spent executing commands of that type, in ms' + }, + + // ------------------------------------------------------------------------ + // Power Supplies + + 'powersupply.capacity': { + info: undefined + }, + + 'powersupply.charge': { + info: undefined + }, + + 'powersupply.energy': { + info: undefined + }, + + 'powersupply.voltage': { + info: undefined } // ------------------------------------------------------------------------ |