-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for cgroup CPUQuota and CPUPeriod prometheus limit #969
Conversation
Can one of the admins verify this patch? |
Thanks for this. What doesn't work? No metric or no values reported in the metric? |
cadvisor builds sucessfully, but in the prometheus output the quota is not exported , but is present in the specific cgroup |
Can you share the whole |
And you're sure you built & replaced cadvisor binary with the newly built binary? Everything looks fine to me but the output. |
hm, yes i am sure but i double check ... |
hm yes its the correct binary, but its not shown |
OK I'll build with your PR locally tomorrow & see if I can see what's going on. |
@jimmidyson thx |
This works perfectly fine for me locally... How are you building? Just run |
Well when I say it works perfectly I mean I get output in the But in logs (running with
Need a test for this as well if possible. |
@jimmidyson yep this happens when no Quota is set, so it need to be coverd.... i run build/build.sh |
@jimmidyson hm is there a specific go version needed to build ? atm i have 1.4.3 |
1.4 should be fine. Do you get errors when building with 1.4? |
@jimmidyson yes fk@linux-3zvu:~/work/src/f0/cadvisor> make
|
Just pushed a fix so you can build on 1.4 as well ( |
ok now i can build, and i got these errors, but why , the type has a field Quota
|
@jimmidyson hm any Idea why spec.Cpu.Quota is not present, its in the files... |
Can one of the admins verify this patch? |
updated with check for -1 (quota not set), but still not work |
@jimmidyson ok have fixed some things, now i get these errors while building, but why, the type has this field? And it does not work in my environment....
|
Discussed on IRC: cadvisor needs to be cloned to |
@jimmidyson after fixing gopath and some other orrors it finaly works THX |
also adding support for the cpu period setting (with this we finally can calculate the percentual cpu usage ) |
@jimmidyson when will this be merged? |
@@ -13,6 +13,9 @@ container_cpu_usage_seconds_total{cpu="cpu03",id="testcontainer",image="test",na | |||
# HELP container_cpu_user_seconds_total Cumulative user cpu time consumed in seconds. | |||
# TYPE container_cpu_user_seconds_total counter | |||
container_cpu_user_seconds_total{id="testcontainer",image="test",name="testcontaineralias"} 6e-09 | |||
# container_spec_cpu_quota HELP CPU quota of the container |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check the format of the lines - HELP
should be at the start of the comment. You can run tests locally btw with make test
.
hm i dont get it now i have this error.... |
The order of the output is important. Think metrics are ordered alphabetically so you'll need to put the new metric in the right place in the test file. |
@jimmidyson ah ok so then the test should be after |
Should be before |
@jimmidyson also does not work |
Can one of the admins verify that this patch is reasonable to test? (reply "ok to test", or if you trust the user, reply "add to whitelist") If this message is too spammy, please complain to ixdy. |
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for the commit author(s). If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. |
hm sorry false positive..... whyever the tests does not work |
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for the commit author(s). If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. |
EXPERIMENTAL - CAN IGNORE Build/test failed for commit e4f9207. |
@@ -55,7 +55,11 @@ func (p testSubcontainersInfoProvider) SubcontainersInfo(string, *info.Container | |||
Aliases: []string{"testcontaineralias"}, | |||
}, | |||
Spec: info.ContainerSpec{ | |||
Image: "test", | |||
Image: "test", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add in HasCpu: true,
in here so that the CPU specs are output as metrics. You'll probably find then that there are a couple of other metrics which haven't been tested for that you'll need to insert into metrics/testdata/prometheus_metrics
to get this to pass.
Ping @f0! |
@vishh @jimmidyson sorry have not so much spare time atm, try to get this in the next days |
If you don't manage to get to it by Monday I can pull it into a separate PR & fix up the tests. |
@jimmidyson feel free, i have no chance to get this until monday, i am 90% offline at the weekend , sorry. |
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for the commit author(s). If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. |
@jimmidyson @vishh finally done (and now i understand the test thing ....) |
@jimmidyson @vishh any outstanding issues with this PR? |
no LGTM |
add support for cgroup CPUQuota and CPUPeriod prometheus limit
This adds support for the CPUQuota cgroup limit.
This actually does not work , i miss something, any hints?