add proc_stat charts info (#11586)
Ilya Mashchenko committed
Sep 28, 2021 at 20:42 UTC
d1d630243731acc3974d3ba1b3d7b3433669ef02
1 file changed
+26
-1
web/gui/dashboard_info.js
+26
-1
@@ -958,8 +958,17 @@ netdataDashboard.submenu = {
958
'To see the total number for the system check the <a href="#menu_system_submenu_interrupts">interrupts</a> section. '+
959
'The last column in <code>/proc/interrupts</code> provides an interrupt description or the device name that registered the handler for that interrupt.'
960
},
961
-};
961
962
+ 'cpu.throttling': {
963
+ info: ' CPU throttling is commonly used to automatically slow down the computer '+
964
+ 'when possible to use less energy and conserve battery.'
965
+ },
966
+
967
+ 'cpu.cpuidle': {
968
+ info: '<a href="https://en.wikipedia.org/wiki/Advanced_Configuration_and_Power_Interface#Processor_states" target="_blank">Idle States (C-states)</a> '+
969
+ 'are used to save power when the processor is idle.'
970
+ },
971
+};
972
973
// ----------------------------------------------------------------------------
974
// chart
@@ -1196,6 +1205,22 @@ netdataDashboard.context = {
1205
commonMax: true
1206
},
1207
1208
+ 'cpu.core_throttling': {
1209
+ info: 'The number of adjustments made to the clock speed of the CPU based on it\'s core temperature.'
1210
+ },
1211
+
1212
+ 'cpu.package_throttling': {
1213
+ info: 'The number of adjustments made to the clock speed of the CPU based on it\'s package (chip) temperature.'
1214
+ },
1215
+
1216
+ 'cpufreq.cpufreq': {
1217
+ info: 'The frequency measures the number of cycles your CPU executes per second.'
1218
+ },
1219
+
1220
+ 'cpuidle.cpuidle': {
1221
+ info: 'The percentage of time spent in C-states.'
1222
+ },
1223
+
1224
// ------------------------------------------------------------------------
1225
// MEMORY
1226