summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-04-25 16:36:03 +0300
committerGitHub <noreply@github.com>2022-04-25 16:36:03 +0300
commit79cf06f6a016edf44dbb084f83208e00c183589e (patch)
treefd10268d27413a79ec96d685996baa11954a7762 /web
parent7a90d9c5cc77c4bf46992138edd94d3c534d075b (diff)
feat(cgroups.plugin): add "CPU Time Relative Share" chart (#12741)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index d435777707..63bf955109 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -4026,6 +4026,13 @@ netdataDashboard.context = {
'When an application has used its allotted CPU quota for a given period, it gets throttled until the next period.'
},
+ 'cgroup.cpu_shares': {
+ info: '<p>The weight of each group living in the same hierarchy, that translates into the amount of CPU it is expected to get. '+
+ 'The percentage of CPU assigned to the cgroup is the value of shares divided by the sum of all shares in all cgroups in the same level.</p>'+
+ '<p>For example, tasks in two cgroups that have <b>cpu.shares</b> set to 100 will receive equal CPU time, '+
+ 'but tasks in a cgroup that has <b>cpu.shares</b> set to 200 receive twice the CPU time of tasks in a cgroup where <b>cpu.shares</b> is set to 100.</p>'
+ },
+
'cgroup.cpu_per_core': {
info: 'Total CPU utilization per core within the system-wide CPU resources.'
},