summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-04-04 18:38:37 +0300
committerGitHub <noreply@github.com>2022-04-04 18:38:37 +0300
commit5bcc462f05a013986dda01b080b334b7b67993c0 (patch)
tree25901856e97f933782d7e4cd51c62d388a065a32 /web
parent13aafc9add2234265394595792e1fe79a8ca1c75 (diff)
feat(cgroups.plugin): add CPU throttling charts (#12591)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index 7e4a7336a6..54a6f24621 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -3889,6 +3889,16 @@ netdataDashboard.context = {
'<a href="https://en.wikipedia.org/wiki/CPU_modes#Mode_types" target="_blank">user and kernel</a> modes.'
},
+ 'cgroup.throttled': {
+ info: 'The percentage of runnable periods when tasks in a cgroup have been throttled. '+
+ 'The tasks have not been allowed to run because they have exhausted all of the available time as specified by their CPU quota.'
+ },
+
+ 'cgroup.throttled_duration': {
+ info: 'The total time duration for which tasks in a cgroup have been throttled. '+
+ 'When an application has used its allotted CPU quota for a given period, it gets throttled until the next period.'
+ },
+
'cgroup.cpu_per_core': {
info: 'Total CPU utilization per core within the system-wide CPU resources.'
},