Wednesday, 2015-04-15

*** promulo__ has joined #openstack-ceilometer00:01
*** noye has quit IRC00:02
*** claudiub has quit IRC00:04
*** promulo_ has quit IRC00:05
*** jmatthews has quit IRC00:06
*** julim has joined #openstack-ceilometer00:10
*** _cjones_ has quit IRC00:11
openstackgerritChris Dent proposed openstack/gnocchi: Let WebOb read the body of a PATCH when creating docs  https://review.openstack.org/17353800:12
*** r-daneel has quit IRC00:24
*** sbfox has quit IRC00:25
*** fnaval has quit IRC00:47
*** sbfox has joined #openstack-ceilometer00:55
*** ankita_wagh has quit IRC00:56
*** ankita_wagh has joined #openstack-ceilometer00:57
*** promulo_ has joined #openstack-ceilometer00:59
*** ankita_wagh has quit IRC01:01
*** promulo__ has quit IRC01:03
*** sbfox has quit IRC01:12
*** fnaval has joined #openstack-ceilometer01:27
*** MVenesio has quit IRC01:31
*** shardy_z has quit IRC01:46
*** yeungp has quit IRC01:55
*** fnaval has quit IRC02:02
*** changbl has joined #openstack-ceilometer02:14
*** harlowja is now known as harlowja_away02:17
*** fnaval has joined #openstack-ceilometer02:25
*** julim has quit IRC02:43
*** Ephur has quit IRC02:46
*** fnaval has quit IRC02:47
*** megh has quit IRC02:51
*** julim has joined #openstack-ceilometer02:55
*** nijaba has quit IRC03:01
*** ankita_wagh has joined #openstack-ceilometer03:02
*** nijaba has joined #openstack-ceilometer03:06
*** nijaba has quit IRC03:06
*** nijaba has joined #openstack-ceilometer03:06
*** Longgeek has joined #openstack-ceilometer03:18
*** sbfox has joined #openstack-ceilometer03:24
*** sputnik13 has quit IRC03:25
*** sputnik13 has joined #openstack-ceilometer03:25
*** Longgeek has quit IRC03:41
*** sputnik13 has quit IRC04:29
*** yatin has joined #openstack-ceilometer04:29
*** sbfox has quit IRC04:34
*** Longgeek has joined #openstack-ceilometer04:37
*** sbfox has joined #openstack-ceilometer04:38
*** Longgeek has quit IRC04:44
*** lan has quit IRC05:35
*** lan has joined #openstack-ceilometer05:35
*** sputnik13 has joined #openstack-ceilometer05:40
*** Longgeek has joined #openstack-ceilometer05:48
*** ankita_wagh has quit IRC06:37
*** ildikov has quit IRC06:38
*** ankita_wagh has joined #openstack-ceilometer06:38
*** ankita_wagh has quit IRC06:43
*** shardy has joined #openstack-ceilometer06:45
openstackgerritMerged openstack/gnocchi: Let WebOb read the body of a PATCH when creating docs  https://review.openstack.org/17353806:48
*** deepthi has joined #openstack-ceilometer06:55
*** sputnik1_ has joined #openstack-ceilometer06:57
*** Ala has joined #openstack-ceilometer06:59
*** sputnik13 has quit IRC07:00
*** sputnik13 has joined #openstack-ceilometer07:01
*** sputnik__ has joined #openstack-ceilometer07:02
*** sputnik1_ has quit IRC07:03
*** sputnik13 has quit IRC07:06
*** sbfox has quit IRC07:07
*** rwsu has quit IRC07:09
*** safchain has joined #openstack-ceilometer07:19
*** yprokule has joined #openstack-ceilometer07:24
*** sputnik13 has joined #openstack-ceilometer07:31
*** eglynn has quit IRC07:33
*** eglynn has joined #openstack-ceilometer07:33
*** sputnik__ has quit IRC07:34
*** c0m0 has joined #openstack-ceilometer07:41
QlawyAny idea why I dont see memory on meter list? (its libvirt and kilo)07:41
QlawyI have memory.usage but not memory07:42
*** eglynn has quit IRC07:47
*** ildikov has joined #openstack-ceilometer07:49
*** Qiming has joined #openstack-ceilometer07:53
Qiminghi07:53
Qimingceilometer07:53
QimingClient-side error: Invalid input for field/attribute resource_metadata. Value: '{u'display_name': u's1-server-djm6a6r7ksvy', u'user_metadata': {'stack': 'ffc8b5e3-fb9b-4c97-935c-0755d1ddaa7c'}}'. Wrong type. Expected '<type 'unicode'>', got '<type 'dict'>'07:53
QimingI'm getting this error when trying to do this "ceilometer --debug sample-create -m ooo --meter-type gauge --meter-unit s --sample-volume 20 --resource-metadata '{"display_name": "my_vm_1", "user_metadata": {"stack": "my_stack"}}' -r 4829fbb5-da33-4327-9b05-4f34f8cd36ae"07:54
Qimingit seems that resource-metadata cannot contain a nested dict07:54
Qimingany suggestions on solving this?07:54
*** safchain has quit IRC08:02
*** eglynn has joined #openstack-ceilometer08:05
*** safchain has joined #openstack-ceilometer08:06
*** ildikov has quit IRC08:12
*** eglynn has quit IRC08:16
liushengQiming: you can try like this: ceilometer --debug sample-create -m ooo --meter-type gauge --meter-unit s --sample-volume 20 --resource-metadata '{"display_name": "my_vm_1", "user_metadata": "{\"stack\": \"my_stack\"}"}' -r 4829fbb5-da33-4327-9b05-4f34f8cd36ae08:21
*** eglynn has joined #openstack-ceilometer08:27
Qimingliusheng, thanks08:30
Qimingfigured out a way to do it, it is strange08:30
Qiming--resource-metadata '{"display_name": "my_vm_1", "user_metadata.stack": "my_stack"}}'08:31
QimingI don't think it is documented somewhere08:31
Qimingthe "user_metadata": "{\"stack\": \"my_stack\"}" syntax is not working as expected, the dumped meter result still has the backslash ...08:35
*** cdent has joined #openstack-ceilometer08:36
liushengQiming: the key-value pairs in resource_metadata, I guess ceilometer can only except "Text" type value, so if you want to record a dict, you need to dump it to json08:37
Qimingyes, liusheng, I tried dump it into json08:37
Qimingbut when the resource_metadata is dumped, I am still getting the \" kind of garbage08:38
Qiminginternally, ceilometer has special treatments to dict type of metadata: http://git.openstack.org/cgit/openstack/ceilometer/tree/ceilometer/compute/notifications/instance.py#n3608:38
Qimingbut from API layer, wsme is only expecting kind of simpledict ...08:38
*** ildikov has joined #openstack-ceilometer08:40
jd__cdent: sileht: what's your feeling about doing a rc1 for Gnocchi today?08:59
silehtjd__, I working of a bug with devstack around the gnocchi_activity_filter in the ceilometer dispatcher09:00
* cdent looks at the unmerged stuff09:00
sileht*I'm working on*09:00
jd__sileht: ok cool09:00
*** IBerezovskiy has joined #openstack-ceilometer09:00
jd__I would have loved to be able to merge my oslo.db patches but I think it's not going to happen soon09:01
jd__so I'll use them as a way to setup alembic09:01
silehtjd__, my goals is to validate that spawning heat templates with gnocchi alarm stuffs work out of the box09:01
jd__sileht: you put the bar pretty high, I like that! :)09:01
cdentI've got nothing pending, and the only other stuff that's not a bug fix that is waiting to merge is prad's archive policy rule stuff, which I just approved09:01
cdentSo I would think an rc1 soon is ... fine?09:01
silehtjd__, I have already succeed in the past, but now it have some issues09:02
silehtjd__, we need a new python-ceilometerclient release, gordc works on that09:02
jd__cool09:02
jd__cdent: awesome09:02
jd__sileht: ok I'll tag rc1 as soon as you give the green light09:03
silehtjd__, the filter activity issue is that some samples doesn't have user_id set09:07
silehtjd__, but we filter on user_id09:07
cdentjd__: actually this one needs another +2, is the other half of the archive policy rule stuff: https://review.openstack.org/#/c/173092/09:10
jd__cdent: I had draft not published on this one damn09:11
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: return 404 on not-existing resource  https://review.openstack.org/17326909:20
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use project instead of user for activity filter  https://review.openstack.org/17373509:23
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: devstack: Fix the creation of archive policy  https://review.openstack.org/17290909:23
*** ildikov has quit IRC09:28
Qiminghello09:39
QimingI believe my auto-scaling heat teamplate is broken09:39
*** srsakhamuri has quit IRC09:39
Qimingwhat am I suppose to use for the matching_metadata property of OS::Ceilometer::Alarm resource now?09:40
QimingI have tried 'metering.stack', 'metadata.user_metadata.stack', neither of which worked09:41
openstackgerritMerged openstack/gnocchi: Add support for ArchivePolicy Rule Endpoints  https://review.openstack.org/17128809:47
*** liusheng has quit IRC09:51
openstackgerritIlya Tyaptin proposed openstack/ceilometer: [MongoDB] Use a aggregate pipeline in statistics  https://review.openstack.org/17234009:53
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use project instead of user for activity filter  https://review.openstack.org/17373509:56
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use lazy loading of gnocchi project to filterout  https://review.openstack.org/17374509:56
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use project instead of user for activity filter  https://review.openstack.org/17373509:58
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use lazy loading of gnocchi project to filterout  https://review.openstack.org/17374509:58
*** ildikov has joined #openstack-ceilometer10:01
*** Longgeek has quit IRC10:02
*** Longgeek_ has joined #openstack-ceilometer10:02
*** Kennan2 has joined #openstack-ceilometer10:03
*** Kennan has quit IRC10:04
*** theanalyst has quit IRC10:06
*** theanalyst has joined #openstack-ceilometer10:09
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: devstack: Fix the creation of archive policy  https://review.openstack.org/17290910:22
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: return 404 on not-existing resource  https://review.openstack.org/17326910:22
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use project instead of user for activity filter  https://review.openstack.org/17373510:25
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use lazy loading of gnocchi project to filterout  https://review.openstack.org/17374510:25
*** Qiming has quit IRC10:29
*** Qiming has joined #openstack-ceilometer10:29
*** claudiub has joined #openstack-ceilometer10:34
*** ityaptin has quit IRC10:39
*** ityaptin has joined #openstack-ceilometer10:40
QlawyQiming: show your template10:47
QlawyQiming: remember to add property  metadata: {"metering.stack": {get_param: "OS::stack_id"}} in OS::Heat::AutoScalingGroup10:48
QlawyQiming: and then matching_metadata: {'metadata.user_metadata.stack': {get_param: "OS::stack_id"}} in alarm should work10:48
QimingQlawy, it's a little bit tricky to tell you how I'm doing this10:49
Qimingbut I can paste you something10:49
QlawyQiming: Im not pretty good, but lost some time with autoscaling templates too ;)10:49
QimingQlawy, I'm generating some ceilometer samples by calling its api10:50
Qimingthe agent code is too long to paste10:50
Qlawyhmmm, what is clue of the problem then?10:51
Qiminghere is the sample I created:10:51
Qiming{"counter_name": "vm_cpu_util", "user_id": "fdca1887e4744bbc902924b110b2d30e", "message_signature": "9b54f0c994662198b1569b7d125b6873ba93e98fa34debc94cb5070250e8db19", "timestamp": "2015-04-15T10:47:04.686632", "resource_id": "1d0127d9-cebd-40e3-831c-05370026496f", "message_id": "c14361fa-e35c-11e4-b638-3440b5be8ee0", "source": "26e4df6952b144e5823aae7ce463a240:openstack", "counter_unit": "%", "counter_volume": 49.5, "project_id":10:51
Qiming"26e4df6952b144e5823aae7ce463a240", "resource_metadata": {"display_name": "as-figb-wgkgejznvamm-6aapiuw64upy-server-hyu6nwz5qnsc", "user_metadata": {"stack": "6e52e624-f9b8-43c9-aab8-53a07af77562"}}, "counter_type": "gauge"}10:51
QimingI'm following ceilometer api interface and generated this sample into ceilometer10:52
Qimingthen in the heat template, when specifying alarm:10:53
Qiming  CPUAlarmHigh:10:53
Qiming    type: OS::Ceilometer::Alarm10:53
Qiming    properties:10:53
Qiming      description: Scale-up if the average CPU > 50% for 1 minute10:53
Qiming      meter_name: vm_cpu_util10:53
Qiming      statistic: avg10:53
Qiming      period: 6010:53
Qiming      evaluation_periods: 110:53
Qiming      threshold: 5010:53
Qiming      alarm_actions:10:53
Qiming      - {get_attr: [ServerScaleUpPolicy, alarm_url]}10:53
Qiming      matching_metadata: {'stack': { get_param: "OS::stack_id"} }10:53
Qiming      comparison_operator: gt10:53
Qiminghere, the ' matching_metadata' is not working I think10:53
QimingI tried, 'metering.stack', 'metadata.user_metadata.stack' ...10:54
QlawyQiming: This is a Ceilometer query for statistics on the cpu_util meter Samples about OS::Nova::Server instances in this stack. The -q parameter selects Samples according to the subject's metadata. When a VM's metadata includes an item of the form metering.X=Y, the corresponding Ceilometer resource has a metadata item of the form user_metadata.X=Y and samples about resources so tagged can be qu10:54
Qimingstrange things happen, but no scaling or even alarm triggering happened10:54
Qlawyeried with a Ceilometer query term of the form metadata.user_metadata.X=Y. In this case the nested stacks give their VMs metadata that is passed as a nested stack parameter, and this stack passes a metadata of the form metering.stack=Y, where Y is this stack's ID.10:54
Qlawybottom of https://github.com/openstack/heat-templates/blob/master/hot/autoscaling.yaml10:55
QimingI think ceilometer is assuming too much10:55
Qlawysome people say that OpenStack is broken from the begining :(10:55
Qiminggot to run, thanks Qlawy10:56
Qlawyyw :)10:56
*** Qiming has quit IRC11:01
*** deepthi has quit IRC11:02
*** idegtiarov is now known as idegtiarov_afk11:05
*** ildikov has quit IRC11:09
cdentjasonamyers, jd__ : this seem like a good idea: http://paste.openstack.org/show/203965/11:09
*** Longgeek has joined #openstack-ceilometer11:29
openstackgerritMerged openstack/gnocchi: return 404 on not-existing resource  https://review.openstack.org/17326911:30
*** Longgeek_ has quit IRC11:31
*** nadya has joined #openstack-ceilometer11:33
*** nadya is now known as Guest2717711:34
*** Guest27177 is now known as _nadya_11:35
openstackgerritIlya Tyaptin proposed openstack/ceilometer: [MongoDB] Use a aggregate pipeline in statistics  https://review.openstack.org/17234011:49
*** Qiming has joined #openstack-ceilometer12:01
*** julim has quit IRC12:01
*** amalagon has joined #openstack-ceilometer12:08
*** Qiming has quit IRC12:10
*** MVenesio has joined #openstack-ceilometer12:13
silehtjd__, I'm wrong or this two call should returns the same thing: http://paste.openstack.org/show/203968/12:16
jd__sileht: yeah we should make no filter be True by default I think12:19
openstackgerritIgor Degtiarov proposed openstack/gnocchi: Adds missed history param into initial list_resource method  https://review.openstack.org/17379512:20
silehtjd__, got it a typo into the policy files...12:20
jd__ok12:21
*** tasdomas is now known as domas12:23
*** amalagon has quit IRC12:23
*** cdent has quit IRC12:28
openstackgerritMehdi Abaakouk proposed openstack/ceilometer: gnocchi: fix typo in the aggregation endpoint  https://review.openstack.org/17379812:31
*** amalagon has joined #openstack-ceilometer12:33
*** gordc has joined #openstack-ceilometer12:34
*** amalagon has quit IRC12:37
gordcsileht: fyi, i didn't make a ceiloclient release yesterday. need to wait for kilo branch and then we need to backport stuff in.12:42
gordchttp://eavesdrop.openstack.org/irclogs/%23openstack-ceilometer/%23openstack-ceilometer.2015-04-14.log around 21:5012:42
silehtgordc, ok no problem, but this force us to move to semver I guess ?12:42
gordcsileht: yes. so we'll have 1.1 as our liberty stream and then 1.0.14 as our next kilo release (with backports)12:43
*** julim has joined #openstack-ceilometer12:43
silehtgordc, ok cool, I will propose my fixes for backports so12:43
gordcsileht: yeah, it sucks but i have no power.lol12:44
gordcsileht: i'll let you know when we have a stable12:44
silehtgordc, stable client/lib version is the hot topics of these last week12:44
openstackgerritMerged openstack/ceilometer: fix combination alarm with operator == 'or'  https://review.openstack.org/17251512:45
*** Qiming has joined #openstack-ceilometer12:48
Qiminghi12:49
Qimingneed some help here12:49
Qimingceilometer --debug sample-create -r 02e1dbab-a482-4c17-bb0a-a5b6b7773954 -m bbb --meter-type gauge --meter-unit s --sample-volume 20 --timestamp "2015-04-15 12:46:14"12:49
Qimingthe above command line succeeded with a table showing that the sample is there12:50
Qimingbut when doing ceilometer sample-list -m bbb, the table is empty12:50
Qimingany suggestions?12:50
*** maishsk has joined #openstack-ceilometer12:50
QlawyWARNING ceilometer.transformer.arithmetic [-] Unable to perform calculation, not all of {_memory_usage_ESC, memory} are present12:51
Qlawyany ideas?12:51
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use project instead of user for activity filter  https://review.openstack.org/17373512:54
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Use lazy loading of gnocchi project to filterout  https://review.openstack.org/17374512:54
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Fix typo in policy name  https://review.openstack.org/17380812:54
silehtjd__, I have pushed everything to have alarming working12:55
silehtjd__, I will test heat now, but alarm stuffs is sufficient for me to release gnocchi :)12:55
jd__awesome12:57
jd__let's push that12:57
*** claudiub has quit IRC12:57
silehtwe have that: https://review.openstack.org/#/q/status:open+AND+(topic:sileht/all-bug-fixes+OR+topic:sileht/bug-fixes),n,z12:57
silehtand that on ceilometer side: https://review.openstack.org/#/c/173798/12:58
silehtgordc, for ceilometer should we backport bug fixes to proposed/kilo, too ?13:00
silehtjd__, you have that one in ceilometer too: https://review.openstack.org/#/c/173798/13:03
jd__sileht: yeah you should push backport there13:05
*** domas is now known as tasdomas13:06
*** tasdomas is now known as domas13:14
*** domas is now known as tasdomas13:15
*** Qiming_ has joined #openstack-ceilometer13:17
*** thomasem has joined #openstack-ceilometer13:18
*** thomasem has quit IRC13:19
*** Qiming has quit IRC13:20
gordcsileht: i guess gnocchi integration doesn't work with kilo if it doesn't exist right?13:21
gordcsileht: seems like a small enough fix to backport to me.13:22
*** yatin has quit IRC13:23
*** MVenesio has quit IRC13:23
*** david-lyle has quit IRC13:24
*** thomasem has joined #openstack-ceilometer13:26
*** r-daneel has joined #openstack-ceilometer13:31
*** ozialien has joined #openstack-ceilometer13:39
*** Ephur has joined #openstack-ceilometer13:40
Qiming_gordc, a quick question?13:45
gordcQiming_: sure13:47
gordcis it related to above question? sorry i missed it.13:47
Qiming_yes, i tried this: ceilometer --debug sample-create -r 02e1dbab-a482-4c17-bb0a-a5b6b7773954 -m bbb --meter-type gauge --meter-unit s --sample-volume 20 --timestamp "2015-04-15 12:46:14"13:47
Qiming_it seems succeeded, no errors, a table shows up13:48
gordcQiming_: did you happen to edit the pipeline.yaml file?13:48
Qiming_but when I do sample-list, I cannot see13:48
gordcie. did you remove meters: '*' from pipeline.yaml13:48
Qiming_no, it is still there13:48
Qiming_I tuned the interval for cpu_source, 600 -> 6013:49
*** maishsk has quit IRC13:49
gordcQiming_: hmm.. yeah, the bug i was thinking of was this: https://bugs.launchpad.net/ceilometer/+bug/143207713:49
openstackLaunchpad bug 1432077 in Ceilometer "Ceilometer client fails to create samples with new (unsupported) meter/counter name" [Medium,Fix released] - Assigned to ZhiQiang Fan (aji-zqfan)13:50
gordcQiming_: this is using kilo?13:50
Qiming_yes, kilo13:50
Qiming_just reinstalled RHEL7 and devstack a week ago13:51
gordcQiming_: hmm. i'll give it a try after i push some code. i don't see anything wrong but if something is, it shouldn't fail without error.13:52
Qiming_thanks, gordc13:52
*** noye has joined #openstack-ceilometer13:53
gordcQiming_: maybe just open a bug for now.13:53
Qiming_I'll check the previous bug and see if something has resurfaced13:53
Qiming_ok13:53
gordcQiming_: sounds like a good idea13:53
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: sqlalchemy: use RDBMS check constraint where available  https://review.openstack.org/17054414:00
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Test with oslo.db master  https://review.openstack.org/17389014:00
silehtjd__, I test that: https://review.openstack.org/173890 and put your change on top of it14:01
jd__sileht: does it install from git like git clone? I just want 1.814:02
silehtjd__, I can put a version14:03
jd__sileht: let me try in my patch14:03
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: Test with oslo.db master  https://review.openstack.org/17389014:04
openstackgerritMehdi Abaakouk proposed openstack/gnocchi: sqlalchemy: use RDBMS check constraint where available  https://review.openstack.org/17054414:04
silehtjd__, I have added the version14:05
silehtjd__, devstack will do 'git clone -b 1.9.0' and 'pip install -e /opt/stack/oslo.db'14:05
jd__cool14:05
sileht*1.8.0*14:05
openstackgerritJulien Danjou proposed openstack/gnocchi: sqlalchemy: use RDBMS check constraint where available  https://review.openstack.org/17054414:05
jd__sileht: I've updated the patch with yours14:05
silehtjd__, but this is just a trick to test14:06
jd__if it works… it's good enough to go in14:06
jd__well at least after rc1 is cut14:06
silehtjd__, I think we are close to have the requirement master branch open again for master dev14:07
*** Kennan has joined #openstack-ceilometer14:07
silehtjd__, I have seen the stable/kilo appear this morning14:07
*** Kennan2 has quit IRC14:08
openstackgerritgordon chung proposed openstack/ceilometer: cleanup problem events logic in event db storage  https://review.openstack.org/17389514:09
openstackgerritPradeep Kilambi proposed openstack/gnocchi: Use Archive Policy Rule in create metric api  https://review.openstack.org/17309214:09
jd__sileht: ok14:09
*** rbak has joined #openstack-ceilometer14:12
openstackgerritMerged openstack/ceilometer: Updated from global requirements  https://review.openstack.org/17139514:15
*** Qiming_ has quit IRC14:16
*** ozialien has quit IRC14:17
*** ozialien has joined #openstack-ceilometer14:19
openstackgerritgordon chung proposed openstack/ceilometer-specs: cleanup specs  https://review.openstack.org/17390614:23
openstackgerritPradeep Kilambi proposed openstack/gnocchi: Use Archive Policy Rule in create metric api  https://review.openstack.org/17309214:25
*** ozialien has quit IRC14:26
pradjd__, ^^ could you review and get this in?14:31
pradjd__, did we already cut the rc ?14:31
jd__prad: not yet we're waiting on your patches14:33
jd__prad: the next patch I want actually is that POST returns the full metric info I think14:33
pradjd__, cool14:33
silehtprad, jd__ when I see this patch I'm thinking that https://github.com/openstack/gnocchi/blob/master/gnocchi/ceilometer/dispatcher.py#L51 become useless14:34
pradsileht, yea the intent of the AP rule is to define rules via the gnocchi api directly14:35
jd__prad: do you want to do it or should I go?14:36
*** Ala has quit IRC14:36
jd__sileht: yeah prad wrote both patches :p14:36
pradjd__, i can do that, did you intend it to be part of the above patch? if so i'll just do it in there14:37
jd__prad: no it's ok to have it in a subsequent patch, but if you can do it it's awesome :)14:37
pradjd__, sure lemme look into it14:38
*** rwsu has joined #openstack-ceilometer15:00
*** jkraj has joined #openstack-ceilometer15:02
openstackgerritIlya Tyaptin proposed openstack/ceilometer: [MongoDB] Use a aggregate pipeline in statistics  https://review.openstack.org/17234015:11
*** c0m0 has quit IRC15:13
*** _nadya_ has quit IRC15:16
*** sbfox has joined #openstack-ceilometer15:18
*** c0m0 has joined #openstack-ceilometer15:19
*** jmanko has joined #openstack-ceilometer15:24
*** sbfox has quit IRC15:24
*** sbfox has joined #openstack-ceilometer15:25
*** ozialien has joined #openstack-ceilometer15:26
*** jmank has quit IRC15:27
*** _cjones_ has joined #openstack-ceilometer15:34
*** thomasem has quit IRC15:35
*** _cjones_ has quit IRC15:38
*** _cjones_ has joined #openstack-ceilometer15:38
*** thomasem has joined #openstack-ceilometer15:38
*** thomasem has quit IRC15:39
*** thomasem has joined #openstack-ceilometer15:39
dhellmannjd__: https://review.openstack.org/173924 will uncap requirements in master15:40
*** alextricity has joined #openstack-ceilometer15:42
alextricityHey guys :) I'm not a mongo expert and was hoping if someone here could point me to some steps I can follow to set up a basic mongo server for ceilometer15:43
alextricityI tried the steps in the docs, but it breaks the permissions and I can't list the databases anymore :(15:44
gordcalextricity: these docs? http://docs.openstack.org/juno/install-guide/install/yum/content/ceilometer-controller-install.html15:45
alextricitygordc: Thanks correct! I actually followed them again on a fresh build just now, and it seems to be going smoothly. Maybe I messed something up earlier15:49
alextricitys/Thanks/thats15:49
gordcalextricity: good to know. :)15:50
*** cdent has joined #openstack-ceilometer15:53
*** yeungp has joined #openstack-ceilometer15:56
openstackgerritMerged openstack/ceilometer: gnocchi: fix typo in the aggregation endpoint  https://review.openstack.org/17379816:06
openstackgerritPradeep Kilambi proposed openstack/gnocchi: Return detailed metric info on create  https://review.openstack.org/17396716:12
silehtgordc, the list here looks wrong to me https://review.openstack.org/#/admin/groups/90,members16:13
gordcsileht: lol we have no power. less work for us.16:14
gordcsileht: jd: what's that list used for?16:14
silehtgordc, it's to prepare rcX release16:14
gordcsileht: oh. that would explain why it didn't work last time i tried.16:15
silehtgordc, as PTL you couldn't Approved bug fixes that will be released, awesome \o/ :p16:15
silehtgordc, you need more power16:15
gordceglynn: you have powers to update?16:15
gordcsileht: i can't be trusted with power.16:16
eglynnLOL :)16:16
* eglynn reads back16:16
eglynngordc: seems I can add or delete16:17
eglynngordc: what changes are needed?16:17
gordceglynn: i guess we can make it similar to ceilometer-release: https://review.openstack.org/#/admin/groups/151,members16:17
*** pedroalvarez has joined #openstack-ceilometer16:18
gordci assume dhellmann already has powers through release managers16:18
gordcyep, he does.16:18
eglynngordc: i.e. remove everyone 'cept you, jd__ & I?16:18
silehteglynn, gordc the list is completly outdated, it still have yunhong-jiang and John Tran16:18
eglynncoolio16:19
gordceglynn: should be ok for now. i don't know who else needs release powers16:19
*** _cjones_ has quit IRC16:19
eglynngordc: cool, just the 3 names now ... https://review.openstack.org/#/admin/groups/90,members16:20
gordceglynn: cool cool. thanks!16:20
*** _cjones_ has joined #openstack-ceilometer16:21
silehtgordc, jd__  eglynn: I have done the two backports to have the gnocchi integration working: https://review.openstack.org/#/c/173966/ and https://review.openstack.org/#/c/173964/16:21
*** jmankov has joined #openstack-ceilometer16:21
*** safchain has quit IRC16:22
gordcsileht: cool cool. will look after lunch.16:22
eglynnsileht: a-ha, cool16:22
*** pdar has joined #openstack-ceilometer16:23
silehteglynn, tomorrow I will validate that nothing is borken on the heat side, and the basic Autoscaling scenario will work for kilo :)16:24
*** jmanko has quit IRC16:25
*** franred has joined #openstack-ceilometer16:26
eglynnsileht: excellent, thanks!16:26
pedroalvarezHi guyw, can anybody point me to some  useful information regarding the "ctlplane" network?16:27
pedroalvarezceilometer needs it, and it's failing because of that..16:28
pedroalvarezs/guyw/guys/ :)16:28
*** _nadya_ has joined #openstack-ceilometer16:30
*** sudorandom has joined #openstack-ceilometer16:33
*** EmilienM is now known as EmilienM|afk16:38
*** c0m0 has quit IRC16:40
pedroalvarezthis is why I'm asking about it: http://paste.baserock.org/kunobeqaza16:44
pedroalvarezany help would be appreciated16:44
*** hughhalf has quit IRC16:45
*** hughhalf has joined #openstack-ceilometer16:47
*** fnaval has joined #openstack-ceilometer16:51
*** IBerezovskiy has quit IRC16:55
*** ankita_wagh has joined #openstack-ceilometer16:55
*** ozialien has quit IRC17:00
*** amalagon has joined #openstack-ceilometer17:01
*** yprokule has quit IRC17:06
gordcdhellmann: i take it it's ok to tag 1.1.0 for liberty now that stable/kilo is created/17:11
dhellmanngordc: it should be. we ran into some issues with the stable branch test environments, but I don't think that's going to affect master.17:12
gordcdhellmann: ok. should i wait so you guys can debug stuff?17:13
*** eglynn has quit IRC17:13
dhellmannif you can, that might be safer, but I don't think the new release will mix into that environment so it shouldn't matter17:13
gordcdhellmann: sure. i'll just wait. i'll backport a few items to stable/kilo in the meantime17:14
gordcthanks for creating the branch.17:14
dhellmanngordc: np, and make sure you base changes on the review with the .gitreview file update in it so your patch is applied to the right branch in gerrit17:15
gordcdhellmann: got it. i see the patch now.17:16
*** ankita_w_ has joined #openstack-ceilometer17:21
*** ankita_wagh has quit IRC17:24
*** sputnik13 has quit IRC17:27
*** harlowja_away is now known as harlowja17:36
*** sbfox has quit IRC17:36
cdentthanks for the more clear commit message prad17:45
*** _nadya_ has quit IRC17:46
*** sbfox has joined #openstack-ceilometer17:46
pradsure17:47
*** Longgeek has quit IRC17:51
*** megh has joined #openstack-ceilometer17:53
*** sbfox has quit IRC17:57
*** openstackstatus has quit IRC17:58
*** openstackstatus has joined #openstack-ceilometer17:59
*** ChanServ sets mode: +v openstackstatus17:59
-openstackstatus- NOTICE: Gerrit has stopped emitting events so Zuul is not alerted to changes. We will restart Gerrit shortly to correct the problem.18:02
*** ChanServ changes topic to "Gerrit has stopped emitting events so Zuul is not alerted to changes. We will restart Gerrit shortly to correct the problem."18:02
*** edmondsw has joined #openstack-ceilometer18:02
*** ozialien has joined #openstack-ceilometer18:02
*** sbfox has joined #openstack-ceilometer18:03
edmondswgordc, so do we have a target for when 1.0.14 will be available? Looking for a calendar date18:05
gordcedmondsw: see http://eavesdrop.openstack.org/irclogs/%23openstack-ceilometer/%23openstack-ceilometer.2015-04-14.log around 21:5018:06
gordcedmondsw: i will cut a 1.1 build tomorrow morning which will be for liberty18:06
gordcwe added a stable/kilo branch this morning so we need to backport certain items to it and build a 1.0.14 release off that18:07
*** _nadya_ has joined #openstack-ceilometer18:08
gordcedmondsw: i will backporting your two fixes and a few other to stable/kilo (1.0.14) release... i'm waiting initial patch to pass.18:08
gordcbut i'd target a stable/kilo release probably early next week.18:08
edmondswgordc, ok, so sounds like we're pretty close? and tx for backporting those18:09
edmondswearly next week is close :)18:09
edmondswtx18:09
gordcedmondsw: yep hopefully. there's a few hiccups in the requirements capping process but hopefully all runs smoothly going forward18:09
edmondswgr818:09
*** yeungp has quit IRC18:11
*** MVenesio has joined #openstack-ceilometer18:13
*** ankita_wagh has joined #openstack-ceilometer18:18
*** ankita_w_ has quit IRC18:22
*** EmilienM|afk is now known as EmilienM18:22
*** _nadya_ has quit IRC18:24
*** ChanServ changes topic to "OpenStack Telemetry (Ceilometer) | https://wiki.openstack.org/wiki/Ceilometer"18:24
-openstackstatus- NOTICE: Gerrit has been restarted. New patches, approvals, and rechecks between 17:30 and 18:20 UTC may have been missed by Zuul and will need rechecks or new approvals added.18:24
*** sbfox has quit IRC18:49
*** amalagon has quit IRC18:53
*** yeungp has joined #openstack-ceilometer18:56
*** megh has quit IRC18:59
*** megh has joined #openstack-ceilometer19:00
openstackgerritgordon chung proposed openstack/ceilometer: cleanup problem events logic in event db storage  https://review.openstack.org/17389519:25
openstackgerritgordon chung proposed openstack/ceilometer: rebuild event model only for database writes  https://review.openstack.org/17403919:25
*** david-lyle has joined #openstack-ceilometer19:30
*** ozialien has quit IRC19:50
*** sbfox has joined #openstack-ceilometer20:08
*** edmondsw has quit IRC20:10
openstackgerritIgor Degtiarov proposed openstack/gnocchi: Adds missed history param into IndexerDriver list_resource method  https://review.openstack.org/17379520:22
*** megh has quit IRC20:36
*** noye has quit IRC20:46
dhellmanngordc: there seems to be a functional test job defined for ceilometerclient in stable/kilo that depends on a file that isn't present. Should we backport the file, or remove the test job?20:53
dhellmanngordc: https://review.openstack.org/#/c/173847/20:53
gordcdhellmann: ah, yes, it's related to cdent's work which isn't part of 1.0.1320:56
dhellmanngordc: ok, do you have some time to figure out how to turn that job off in the stable branch?20:57
gordci guess we have to? since we can't backport anything without your patch.20:57
cdentwhat did I do now?20:57
gordcdhellmann: i'll look at infra to turn it off20:57
gordccdent: we just need to turn off funtional gate job on stable as it doesn't work without https://github.com/openstack/python-ceilometerclient/commit/5bc02fe57bae5e38054a121ae03e429e9b0ba5b120:58
gordcand that isn't in the stable/kilo20:58
cdentwhen did stable/kilo get cut?20:59
gordcfor client? this morning20:59
gordcbut we cut it against 1.0.13... not master20:59
dhellmanngordc: thanks20:59
cdentgordc: when you're done figuring things out can you let me know the ins and outs of why?21:00
gordccdent: why stable/kilo is against 1.0.13?21:01
* cdent nods21:01
*** sputnik13 has joined #openstack-ceilometer21:05
gordccdent: can i revert this? https://github.com/openstack-infra/project-config/commit/acfa087d547a1d87995fe54381ff8c29304ea84821:05
gordcor better to just drop it from check/gate only?21:05
gordccdent: the reason is since 1.0.13 we pulled in requirements and the rule going forward is if you have a requirements change, make a min version change to avoid broken-ness21:07
cdentYou can revert that but then the tests won't run for any branch will they, in which case those tests (which are now gone from tempest) will be just gone?21:07
cdentBackport is not an option?21:08
gordccdent: backport is an option yes.21:08
gordccdent: hm...i just noticed branch tag i can use to run against master21:09
*** jkraj has quit IRC21:16
*** ankita_w_ has joined #openstack-ceilometer21:20
*** ankita_wagh has quit IRC21:22
*** noye has joined #openstack-ceilometer21:35
cdentgordc you're have a classic Learning Opportunity21:42
cdent(and I'm glad to be able to observe)21:43
* gordc is always guessing when patching infra21:44
cdentditto21:47
cdentI was able to just copy nova stuff when I put those in. Without that I would have had _no_ clue21:47
gordci do a search for a word, if i match, i copy/paste and just let someone tell me i'm wrong.lol21:48
*** sbfox has quit IRC21:54
*** sbfox has joined #openstack-ceilometer22:01
*** MVenesio has quit IRC22:09
openstackgerritRohit Jaiswal proposed openstack/ceilometer-specs: Spec for DNS service notification consumption  https://review.openstack.org/17412422:17
*** rjaiswal has joined #openstack-ceilometer22:22
*** julim has quit IRC22:22
*** _cjones_ has quit IRC22:24
openstackgerritgordon chung proposed openstack/ceilometer: cleanup problem events logic in event db storage  https://review.openstack.org/17389522:33
openstackgerritgordon chung proposed openstack/ceilometer: cleanup problem events logic in event db storage  https://review.openstack.org/17389522:33
*** _cjones_ has joined #openstack-ceilometer22:37
*** gordc has quit IRC22:45
openstackgerritgordon chung proposed openstack/ceilometer: rebuild event model only for database writes  https://review.openstack.org/17403922:57
*** rbak has quit IRC23:02
*** ankita_wagh has joined #openstack-ceilometer23:16
*** ankita_w_ has quit IRC23:19
*** drjones has joined #openstack-ceilometer23:31
*** Madkiss has quit IRC23:31
*** Madkiss_ has joined #openstack-ceilometer23:31
*** Madkiss_ is now known as Madkiss23:31
*** promulo__ has joined #openstack-ceilometer23:33
*** ankita_w_ has joined #openstack-ceilometer23:33
*** j_king_ has joined #openstack-ceilometer23:34
*** ankita___ has joined #openstack-ceilometer23:35
*** ankit____ has joined #openstack-ceilometer23:36
*** ankita_wagh has quit IRC23:37
*** _cjones_ has quit IRC23:38
*** j_king has quit IRC23:38
*** mstyne has quit IRC23:38
*** lan_ has joined #openstack-ceilometer23:38
*** mstyne_ has joined #openstack-ceilometer23:38
*** cdent has quit IRC23:39
*** ankita_w_ has quit IRC23:39
*** lan has quit IRC23:39
*** promulo_ has quit IRC23:39
*** alextricity has quit IRC23:39
*** ankita___ has quit IRC23:40
*** amalagon has joined #openstack-ceilometer23:45
*** amalagon has quit IRC23:50
*** wolsen_ is now known as wolsen23:59

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!