Tuesday, 2014-06-24

*** Qiming has joined #openstack-ceilometer00:09
*** ddieterly has joined #openstack-ceilometer00:11
*** ddieterly has quit IRC00:12
*** ddieterly has joined #openstack-ceilometer00:12
*** ddieterly has quit IRC00:17
*** matsuhashi has joined #openstack-ceilometer00:21
*** nati_ueno has joined #openstack-ceilometer00:23
*** _nadya_ has quit IRC00:25
*** Qiming has quit IRC00:40
*** ildikov has quit IRC01:06
*** ddieterly has joined #openstack-ceilometer01:08
*** _cjones_ has quit IRC01:13
*** _cjones_ has joined #openstack-ceilometer01:14
*** fnaval has joined #openstack-ceilometer01:16
*** Qiming has joined #openstack-ceilometer01:18
*** _cjones_ has quit IRC01:18
openstackgerritliusheng proposed a change to openstack/python-ceilometerclient: Improve --debug logging output  https://review.openstack.org/10207601:23
*** nosnos has joined #openstack-ceilometer01:44
*** nati_ueno has quit IRC01:53
*** ddieterly has quit IRC02:15
*** _cjones_ has joined #openstack-ceilometer02:25
*** fnaval has quit IRC02:26
*** dmsimard is now known as dmsimard_away02:28
*** _cjones_ has quit IRC02:29
*** fnaval has joined #openstack-ceilometer02:33
*** dmsimard_away is now known as dmsimard02:35
*** dmsimard is now known as dmsimard_away02:35
Qimingceilometer-alaram-evaluator forms the following incorrect SQL statement that cannot be evaluated by mysql:02:37
QimingSELECT meter.unit AS meter_unit, min(sample.timestamp) AS tsmin, max(sample.timestamp) AS tsmax, count(sample.volume) AS count, max(sample.volume) AS max, sum(sample.volume) AS sum, avg(sample.volume) AS avg, min(sample.volume) AS min FROM sample, meter LEFT OUTER JOIN metadata_text AS metadata_text_1 ON (sample.id = metadata_text_1.id AND metadata_text_1.meta_key = 'user_metadata.stack') WHERE meter.id = sample.meter_id AND meter.name =02:37
Qiming'cpu_util' AND sample.timestamp >= 100 AND sample.timestamp <= 100 AND metadata_text_1.value = '5030b1fd-02d2-49bb-8a28-5f1c8edbe017' AND sample.timestamp >= 200 AND sample.timestamp < 300 GROUP BY meter.uni02:37
Qimingthe error message is: Unknown column 'sample.id' in 'on clause'02:37
*** yfujioka has joined #openstack-ceilometer02:42
liushengQiming: maybe need running *ceilometer-dbsync* command, just guess :)02:42
Qiminghi, liusheng02:43
liushengQiming: Hi02:43
Qimingmy guess is that this SQL is incorrect02:43
*** Alice911 has joined #openstack-ceilometer02:43
Qimingit is specifying two tables to be LEFT OUTER JOIN with another table02:43
Qimingmanually tried this in mysql... I'm getting the same error message02:44
liushengQiming: let me try, your alarm is based on cpu_util?02:45
Qimingyes02:45
liushengQiming: ok02:45
*** fnaval has quit IRC02:45
*** ddieterly has joined #openstack-ceilometer02:49
liushengQiming: it is ok in my devstack02:53
Qimingare you using devstack?02:54
*** nosnos has quit IRC02:54
*** ddieterly has quit IRC02:54
liushengQiming: yes02:54
Qimingand mysql backend?02:54
liushengQiming: yes02:54
Qiming...02:54
*** nosnos has joined #openstack-ceilometer02:54
liushengQiming: did you have tried ceilometer-dbsyn ?02:54
Qimingliusheng, do you mean the SQL above executes okay in your env?02:55
Qimingyes, I did ceilometer-dbsync several times, stop all ceilo services and restart them all ...02:56
liushengQiming: you mean run the SQL statement directly?02:56
Qimingthe SQL above was what ceilometer was forming, and then it complains that SQL is not correct02:57
liushengQiming: maybe this is related the version of sql02:57
*** tasdomas has quit IRC02:58
liushengQiming: search the "Unknown column 'sample.id' in 'on clause'" in google, there are some statements02:58
*** nosnos has quit IRC02:59
Qimingyou mean ... google ...02:59
*** tasdomas has joined #openstack-ceilometer03:00
Qimingahh, bug #133267303:02
*** nosnos has joined #openstack-ceilometer03:05
liushengQiming: it seems is a issue, I have reproduced the error03:06
Qimingit appears when I'm telling ceilometer to do a metadata matching when evaluating an alarm ...03:07
Qimingliusheng, check this: http://git.openstack.org/cgit/openstack/ceilometer/tree/ceilometer/storage/sqlalchemy/models.py#n20103:09
Qimingcould it be there the join happens?03:10
*** ddieterly has joined #openstack-ceilometer03:11
*** ddieterly has quit IRC03:16
*** matsuhashi has quit IRC03:18
*** matsuhashi has joined #openstack-ceilometer03:19
*** matsuhashi has quit IRC03:24
*** deepthi has joined #openstack-ceilometer03:29
liushengQiming: Hi03:33
liushengQiming:  I reproduce the issue by command "ceilometer statistics -m cpu_util -q metadata.abc=abc"03:34
*** nosnos has quit IRC03:34
*** nosnos has joined #openstack-ceilometer03:35
liushengQiming: and I get the error message like you have met03:35
liushengQiming: I build the sql statements, like "SELECT meter.unit AS meter_unit, min(sample.timestamp) AS tsmin, max(sample.timestamp) AS tsmax, count(sample.volume) AS count, max(sample.volume) AS max, sum(sample.volume) AS sum, avg(sample.volume) AS avg, min(sample.volume) AS min FROM sample, meter LEFT OUTER JOIN metadata_text AS metadata_text_1 ON (sample.id = metadata_text_1.id AND metadata_text_1.meta_key = 'abc') WHERE meter.id =03:36
liushengsample.meter_id AND meter.name = 'cpu_util' AND metadata_text_1.value = 'abc' GROUP BY meter.unit;"03:36
zqfanliusheng, what you're talking about may be https://bugs.launchpad.net/ceilometer/+bug/133267303:37
liushengQiming: I run it in sql CLI, the same error printed, when I change the "FROM sample, meter" to "FROM (sample, meter)" the problem missed03:38
liushengzqfan: yes, I have found the bug03:38
*** nosnos has quit IRC03:39
liushengmaybe the google is right \o/, like this article:http://blog.csdn.net/smith789/article/details/726828103:39
*** liusheng is now known as liusheng-leave04:07
*** liusheng-leave is now known as liusheng-afk04:07
*** matsuhashi has joined #openstack-ceilometer04:10
Qiminghi, liusheng04:11
*** ddieterly has joined #openstack-ceilometer04:11
*** ddieterly has quit IRC04:16
*** nosnos has joined #openstack-ceilometer04:19
*** ildikov has joined #openstack-ceilometer04:22
*** ildikov has quit IRC04:32
*** psharma has joined #openstack-ceilometer04:39
*** _nadya_ has joined #openstack-ceilometer04:50
*** _nadya__ has joined #openstack-ceilometer04:52
*** _nadya_ has quit IRC04:52
*** nati_ueno has joined #openstack-ceilometer04:58
*** yatin has joined #openstack-ceilometer05:06
*** ajc_ has joined #openstack-ceilometer05:07
*** _nadya__ has quit IRC05:08
*** ddieterly has joined #openstack-ceilometer05:11
*** ddieterly has quit IRC05:16
*** Qiming has quit IRC05:22
*** ildikov has joined #openstack-ceilometer05:28
*** Alice911 has quit IRC05:41
*** rwsu has quit IRC05:41
*** Alice911 has joined #openstack-ceilometer05:42
*** _nadya_ has joined #openstack-ceilometer05:44
*** Alice911 has quit IRC05:44
*** Alice911 has joined #openstack-ceilometer05:47
*** _nadya_ has quit IRC05:50
*** Longgeek has joined #openstack-ceilometer06:01
*** Longgeek has quit IRC06:02
*** Longgeek has joined #openstack-ceilometer06:03
*** robsparker has quit IRC06:04
openstackgerritTatsuro Makita proposed a change to openstack/ceilometer: Add log output of "x-openstack-request-id" from nova  https://review.openstack.org/10146506:05
*** Qiming has joined #openstack-ceilometer06:07
*** liusheng-afk is now known as liusheng06:10
*** ddieterly has joined #openstack-ceilometer06:11
liushenghi Qiming06:13
Qiminghi06:13
Qimingliusheng, do you know anyone is working on the bug reported?06:14
*** ddieterly has quit IRC06:16
*** ddieterly has joined #openstack-ceilometer06:16
liushengQiming: No, I just assigned this bug to me temporarily, and  trying to upload a patch06:16
openstackgerritMehdi Abaakouk proposed a change to openstack/ceilometer: Use hmac.compare_digest to compare signature  https://review.openstack.org/10193406:16
Qimingcool.06:17
Qimingthe bug is introduced here, I think: http://git.openstack.org/cgit/openstack/ceilometer/tree/ceilometer/storage/impl_sqlalchemy.py#n13506:17
liushengQiming: :)06:17
liushengQiming: yeah, I am searching around here06:18
Qiminggreat!!06:19
liushengQiming: if you have a way to solve this bug, you can assign to you, haha :)06:19
*** harlowja is now known as harlowja_away06:20
*** sam___ has joined #openstack-ceilometer06:20
Qimingliusheng: I'm not the right person to work this out due to my limited knowledge on SQL JOIN ...06:20
*** ddieterly has quit IRC06:21
Qimingliusheng: but I am really eager to see a patch because it is blocking my work on other things ...06:22
liushengQiming: I am trying, actually, I am also not familiar with SQL, just have a try :)06:26
Qimingjust checked with my coworker06:26
Qiminghe is not suffering from this problem06:26
Qimingand here is his version of code:06:27
Qiminghttp://paste.openstack.org/show/84753/06:27
Qimingthe recent patch is making things not working on mysql06:28
Qiminga quick/naive fix would be rollback the change, until someone can come up with a better solution that supports 'or' operator06:29
liushengQiming: by git logs, this change is made by https://review.openstack.org/#/c/94325/06:32
Qimingokay06:33
*** Underyx|off is now known as underyx06:48
openstackgerritZhiQiang Fan proposed a change to openstack/ceilometer: Enable filter alarms by their type  https://review.openstack.org/9365806:55
*** tushar has joined #openstack-ceilometer07:01
tusharhii all07:01
openstackgerritTatsuro Makita proposed a change to openstack/ceilometer: Add log output of "x-openstack-request-id" from nova  https://review.openstack.org/10146507:01
*** yfujioka has quit IRC07:03
tusharI am facing some problem in ceilometer07:03
tusharsome times it takes meter volume sample and some times not07:04
openstackgerritChinmaya Bharadwaj proposed a change to openstack/ceilometer: VMware:Update the ceilometer doc with VMware opts  https://review.openstack.org/9813207:06
*** psharma has quit IRC07:08
*** openstackgerrit has quit IRC07:10
*** psharma has joined #openstack-ceilometer07:11
*** nati_ueno has quit IRC07:15
*** tushar has quit IRC07:27
*** ilyashakhat has quit IRC07:31
*** asvechnikov has quit IRC07:32
*** ilyashakhat has joined #openstack-ceilometer07:33
*** asvechnikov has joined #openstack-ceilometer07:33
*** mandira has joined #openstack-ceilometer07:34
*** mandira has quit IRC07:36
*** nacim has joined #openstack-ceilometer07:41
*** ifarkas has joined #openstack-ceilometer08:02
*** safchain has joined #openstack-ceilometer08:04
*** nacim has quit IRC08:09
*** yatin_ has joined #openstack-ceilometer08:09
*** eglynn has joined #openstack-ceilometer08:09
*** yatin has quit IRC08:13
eglynnjd__: I shuold prolly just abandon https://review.openstack.org/101781 right?08:22
eglynn(i.e. the patch to drop median ... that'll be feasible again for pandas to calculate, now that we're switching to retaining all the datapoints)08:22
*** nacim has joined #openstack-ceilometer08:24
*** nacim has quit IRC08:28
jd__eglynn: yeah let's drop it I'm gonna work on that today08:31
eglynnjd__: cool ... it dies :)08:32
*** nacim has joined #openstack-ceilometer08:41
*** isviridov|away is now known as isviridov08:45
liushengQiming: hi08:49
Qiminghi08:49
*** _nadya_ has joined #openstack-ceilometer08:52
liushengQiming: I have upload a primary patch for that bug: https://review.openstack.org/#/c/102150/108:54
liushengQiming: In my environment, it works ok08:54
Qimingahh, looks pretty neat a patch!08:55
Qimingwill try it08:55
*** cdent has joined #openstack-ceilometer08:57
*** _nadya_ has quit IRC08:57
*** _nadya_ has joined #openstack-ceilometer09:00
*** sayalilunkad has joined #openstack-ceilometer09:18
idegtiarovHello everybody!09:19
idegtiaroveglynn: I have push my patch on review, and it has successfully path thru Jenkins. Could you look at it when you will have some time?09:22
eglynnidegtiarov: thanks, will do!09:23
idegtiaroveglynn: zqfan rise some question in comments for patch 1: first is devoted to get_events method in all backend it return iterator, may be if it returns generator it will be better.09:25
idegtiarovand second is for get_traits method, to path thru tests we have to sorted traits before return because in no sql dbs we get dict with the data, and it seems that such behavior is not perfect. May be we should to make some changes in tests or write some new tests specially for no sql dbs?09:29
*** yatin__ has joined #openstack-ceilometer09:38
*** yatin_ has quit IRC09:38
*** yatin has joined #openstack-ceilometer09:39
*** liusheng has quit IRC09:40
*** liusheng has joined #openstack-ceilometer09:40
*** asvechnikov has quit IRC09:41
DinaBelovafolks, I do not see the openstackgerrit bot presented :D09:42
DinaBelovait left us one more time?09:42
*** yatin__ has quit IRC09:43
DinaBelovaeglynn, ildikov, _nadya_ - as there is no bot, I'm working for it :D >>> https://review.openstack.org/#/c/102159/09:43
*** Longgeek has quit IRC09:45
*** Longgeek has joined #openstack-ceilometer09:45
_nadya_DinaBelova: maybe we may fix http://docs.openstack.org/developer/ceilometer/install/dbreco.html here too?09:45
DinaBelova_nadya_, in this change also?09:45
_nadya_DinaBelova: yep09:46
DinaBelovaok09:46
DinaBelovawill do09:46
*** Longgeek has quit IRC09:46
*** openstackgerrit has joined #openstack-ceilometer09:46
*** Longgeek has joined #openstack-ceilometer09:47
SergeyLukjanovDinaBelova, openstackgerrit is alive again09:47
DinaBelovaSergeyLukjanov, thank you!09:48
openstackgerritDina Belova proposed a change to openstack/ceilometer: Fix HBase available capabilities list  https://review.openstack.org/10215909:48
DinaBelovaSergeyLukjanov, it's workig :)09:48
*** psharma has quit IRC09:51
openstackgerritA change was merged to openstack/ceilometer-specs: spec for grenade ceilometer resource survivability  https://review.openstack.org/10057509:51
*** asvechnikov has joined #openstack-ceilometer09:51
*** Longgeek has quit IRC09:52
*** Longgeek has joined #openstack-ceilometer09:53
*** inc0 has joined #openstack-ceilometer09:55
*** amarao has joined #openstack-ceilometer09:57
*** underyx is now known as Underyx|off10:06
*** yatin has quit IRC10:13
*** nosnos has quit IRC10:19
*** nosnos has joined #openstack-ceilometer10:19
*** yatin has joined #openstack-ceilometer10:20
*** Qiming has quit IRC10:23
*** matsuhashi has quit IRC10:23
*** matsuhashi has joined #openstack-ceilometer10:24
*** nosnos has quit IRC10:24
*** matsuhashi has quit IRC10:28
*** alexpilotti has joined #openstack-ceilometer10:28
*** Alice911 has quit IRC10:32
*** zqfan is now known as _10:44
*** _ is now known as zqfbot10:45
*** Longgeek has quit IRC11:03
*** alexpilotti has quit IRC11:09
*** sam789 has joined #openstack-ceilometer11:10
*** sam789 has quit IRC11:14
*** Longgeek has joined #openstack-ceilometer11:18
*** vrovachev has joined #openstack-ceilometer11:19
*** Qiming has joined #openstack-ceilometer11:19
*** _nadya_ has quit IRC11:20
*** deepthi has quit IRC11:27
*** dmsimard_away is now known as dmsimard11:33
*** Longgeek has quit IRC11:38
*** Longgeek has joined #openstack-ceilometer11:38
*** Longgeek_ has joined #openstack-ceilometer11:39
DinaBelovaeglynn, do you remember the bug with swift+ceilo on devstack I meantioned?11:41
DinaBelovaeglynn, it has the roots in the https://bugs.launchpad.net/ceilometer/+bug/1294789 :)11:41
eglynnDinaBelova: yeap, I remember11:41
* eglynn looks11:41
DinaBelovaI'll fix this in devstack, but we need to understand what will we do in the ceilo itself - as it was proposed to fix that in the conf file of swift itself11:42
DinaBelovaI propose to mention this in our docs11:42
eglynna-ha, interesting11:42
DinaBelovayes :)11:42
eglynncool, definitely should have attention called to it in docco11:43
eglynnthanks!11:43
DinaBelovaok, so we'll do this in that way11:43
DinaBelovacool :)11:43
DinaBelovaeglynn, np11:43
*** Longgeek has quit IRC11:43
*** ddieterly has joined #openstack-ceilometer11:50
*** jdob has joined #openstack-ceilometer12:01
*** nacim has quit IRC12:05
lsmola__ityaptin: hello, are you around?12:16
*** thomasem has joined #openstack-ceilometer12:16
*** ddieterly has quit IRC12:16
*** nacim has joined #openstack-ceilometer12:21
EmilienMjd__: sileht: FYI, the bug I'm facing when using SSL: https://bugs.launchpad.net/ceilometer/+bug/133367412:24
*** gordc has joined #openstack-ceilometer12:26
silehtEmilienM, I don't think this is a ceilometer issue ...12:26
EmilienMthanks for the triage12:27
*** jaypipes has quit IRC12:41
*** Ruetobas has quit IRC12:41
*** jaypipes has joined #openstack-ceilometer12:43
*** changbl has quit IRC12:45
*** Ruetobas has joined #openstack-ceilometer12:47
ityaptinlsmola__: hi!12:48
ityaptinlsmola__: I'm here)12:49
lsmola__ityaptin: hello12:49
lsmola__ityaptin: I see you are actively working on  https://github.com/ityaptin/ceilometer/blob/master/tools/sample-generator.py12:49
lsmola__ityaptin: are you planning to push that to Ceilometer codebase?12:50
*** ajc_ has quit IRC12:50
lsmola__ityaptin: it would need greater range of configurability, but it would be really welcomed patch12:51
ityaptinlsmola__: Now I'm implementing automatic performance tests.12:51
*** Ruetobas has quit IRC12:51
lsmola__ityaptin: we are in desperate need of testing samples for UI testing12:51
ityaptinAnd when I'll prepare smth complted, I m going to start discussing about my tests in ceilometer codebase12:52
ityaptinityaptin:12:53
ityaptinsorry)12:53
lsmola__ityaptin: do you have a timeframe for that?12:54
*** erecio has joined #openstack-ceilometer12:55
lsmola__ityaptin: so the main goals of your patches will be performance tests, right?12:55
*** gordc has quit IRC12:55
ityaptinlsmola__: Yes)12:55
ityaptinlsmola__: Code with automatic performance tests will be pushed today or tomorrow, I think.12:56
lsmola__ityaptin: cool12:56
eglynnityaptin: would you be happy enough if lsmola__ contributed some changes to your loadgen script?12:56
ityaptinlsmola__: To my github repo12:56
eglynnityaptin: (... e.g. to enhance the variance in meter name, user, tenant etc.)12:57
*** Ruetobas has joined #openstack-ceilometer12:57
ityaptineglynn, lsmola__: I'm ready to that. That kind of configurability do you want?12:57
ityaptineglynn: oh sorry, I miss your last message)12:58
*** julim has joined #openstack-ceilometer12:59
*** ddieterly has joined #openstack-ceilometer12:59
ityaptinlsmola__: And I will be happy, if you make this changes)12:59
eglynnityaptin: one thing about your sample-generator script confuses me13:01
ityaptineglynn: what is it?13:02
eglynnityaptin: why the connection to the 'amqp://nova:...' instead of using the normal oslo.message or old RPC config?13:02
DinaBelovaeglynn, ityaptin, I propose to split ityaptin's change to two ones13:02
DinaBelova1/ samples gen - to the tools dir13:03
DinaBelovaright now13:03
DinaBelovaand 2/ all othet performance tests stuff13:03
DinaBelovaeglynn, lsmola__ - what do you think about this?13:03
eglynnDinaBelova: sounds reasonable to me13:03
DinaBelovaso you'll have the opportunity to review samples gen right now13:04
DinaBelovaeglynn, ok13:04
eglynnDinaBelova: thanks!13:04
DinaBelovaand merge and modify :)13:04
lsmola__DinaBelova: I am actually checking that there is some sample generator alreadyhttps://github.com/openstack/ceilometer/blob/master/tools/make_test_data.py13:04
DinaBelovaeglynn, np13:04
ityaptineglynn: In current configuration I'm using pika)13:04
lsmola__DinaBelova: but yes, that definitely make sense13:04
DinaBelovalsmola__, ok, coolio13:04
ityaptineglynn: Because sample publishing with oslo.messaging was slower) Now In one thread it create 500msg/s, but with oslo.messaging ~100-150msg/s13:05
eglynnityaptin: a-ha, I see13:06
eglynnthanks for the clarification13:06
eglynnbbiab13:06
*** eglynn is now known as eglynn-afk13:06
*** nacim has quit IRC13:11
*** yatin has quit IRC13:12
*** jmckind has joined #openstack-ceilometer13:20
*** jmckind has quit IRC13:20
*** Longgeek has joined #openstack-ceilometer13:21
*** Longgeek_ has quit IRC13:22
*** sayalilunkad has quit IRC13:22
openstackgerritIlya Tyaptin proposed a change to openstack/ceilometer: Sample generator for ceilometer tests.  https://review.openstack.org/10222513:23
ityaptinlsmola__: Patchset is above)13:25
*** BillArnold___ has joined #openstack-ceilometer13:25
*** sam___ has quit IRC13:25
lsmola__ityaptin: great thank you13:26
lsmola__ityaptin: I am thinking if it will be enough for us to use https://github.com/openstack/ceilometer/blob/master/tools/make_test_data.py13:26
lsmola__ityaptin: cause we just need the data in, whatever way13:26
DinaBelovalsmola__, well, anyway please take a look on this :)13:27
lsmola__DinaBelova: ok :-) making it more configurable will be always beneficial13:27
DinaBelovalsmola__, for sure :)13:28
*** nacim has joined #openstack-ceilometer13:28
*** _nadya_ has joined #openstack-ceilometer13:45
*** gordc has joined #openstack-ceilometer13:46
DinaBelovaeglynn-afk, for your interest https://review.openstack.org/#/c/102216/13:47
eglynn-afkDinaBelova: cool, thanks13:48
eglynn-afknice13:48
DinaBelovaeglynn-afk, thanks :)13:48
DinaBelovafinally it was not so hard :)13:48
*** eglynn-afk is now known as eglynn-ptl-webin13:50
*** eglynn-ptl-webin is now known as eglynn-webinar13:51
openstackgerritgordon chung proposed a change to openstack/ceilometer: clean up sample index  https://review.openstack.org/9620014:01
cdentwow. tempest kind of sort of intentionally swallows exceptions.14:04
DinaBelovacdent, where?14:08
cdentI'm trying to do some work on tempest/cmd/javelin.py14:09
cdentexceptions get swallowed to logging only, only their messages (not types) are logged to tempest.log14:09
DinaBelovacdent, hehe14:09
cdentand in the case of javelin (which is a cli) you're just left with nothing at the console other than a $? of 114:09
cdentand me sitting there scratching my head14:09
DinaBelova:(14:10
cdenti finally traced it back to a place where I can temporarily turn it off while I'm exploring14:10
cdentbut I feel like I've wasted half the day14:10
DinaBelovaildikov, btw, may you re-mark the https://review.openstack.org/#/c/102159/ ? dvsm job has failed - and i see strange error in the console.html...14:11
DinaBelovabut I'm not sure that will reproduce14:11
DinaBelovacdent, yeah, I know this feeling///14:12
*** Longgeek has quit IRC14:18
*** Longgeek has joined #openstack-ceilometer14:19
ildikovDinaBelova: that was a sanity check failure according to the logs14:24
*** alexpilotti has joined #openstack-ceilometer14:25
DinaBelovaildikov, yes, but that looks odd14:25
DinaBelovathat means smth really strange happened14:26
DinaBelovain the very beginning...14:26
ildikovDinaBelova: there is a bug for a similar issue: https://bugs.launchpad.net/grenade/+bug/133122914:27
openstackgerritgordon chung proposed a change to openstack/ceilometer: fix indices in event tables  https://review.openstack.org/9150114:28
openstackgerritgordon chung proposed a change to openstack/ceilometer: clean up event model  https://review.openstack.org/10198814:28
ildikovDinaBelova: it seems that sometimes there is some trouble with some services, I will add a comment that it happened with another service too, maybe some mechanism is not working correctly, I do not know the deep insides of Grenade14:28
DinaBelovaildikov, thanks!14:28
DinaBelovawow, one moment14:28
DinaBelovain this bug14:28
DinaBelovaI see ceilo too14:29
DinaBelovaildikov - there is 'Ceilometer not yet supported, skipping check for ...'14:29
DinaBelovain the bug14:29
ildikovDinaBelova: I know, but we still have Ceilometer BP for Grenade, so I guess we do not have all the checks that we need14:32
DinaBelovaildikov, oh, ok14:32
ildikovDinaBelova: I do not have deep knowledge about the checks in Grenade, so if you need details, then cdent is your person :)14:34
* cdent hides14:34
cdentthis tempest fight I'm having today is because of grenade14:35
*** fnaval has joined #openstack-ceilometer14:36
gordcildikov: darn. beat me to it. :)14:36
*** fnaval has quit IRC14:36
*** fnaval has joined #openstack-ceilometer14:36
ildikovcdent: sorry for mentioning your name, I did not want to make your day even worse with this topic :)14:37
cdent:)14:37
ildikovgordc: LOL :)14:39
ildikovgordc: I felt that I need to do smth useful today, as I was on meetings almost all day long and now I have some docco to write14:41
ildikovgordc: so this day is full of joy... :)14:41
gordcildikov: :) i'm glad you own the docs and not me.14:42
openstackgerritgordon chung proposed a change to openstack/ceilometer: improve expirer performance for sql backend  https://review.openstack.org/9648914:43
ildikovgordc: it's my pleasure to make everyone happy that they do not have their name on that gap topic ;)14:43
gordcildikov:  much appreciated.14:44
ildikovgordc: ... and no, I do not envy anyone having nice patches on review containing some nice or not that nice but still code :)14:44
ildikovgordc: thanks, I will try my best, it just requires much time to me unfortunatelly, I read slow and I write even slower :S14:45
gordcildikov: lol i think that applies to everyone except eglynn14:46
ildikovgordc: LOL, I've already told him, that I would happily correct his spelling errors, if he would write those few pages :)14:47
ildikovgordc: ... it would be still faster :)14:47
ildikovgordc: ... but somehow he did not like the idea, I don't understand why ;)14:48
gordcildikov: hahah. good try.14:49
ildikovgordc: yeap, with the expected outcome sadly14:49
*** nacim has quit IRC14:51
ildikovgordc: anyway, I'm back to the docco job, I'll let you do the rest of good deeds for today or maybe this week or smth like :)14:53
gordc:) i'll try.14:54
ildikovgordc: cool :)14:54
openstackgerritgordon chung proposed a change to openstack/ceilometer: use urlparse from six  https://review.openstack.org/10035114:57
eglynn-webinarif anyone is interested in the lies I've been telling ...14:58
*** eglynn-webinar is now known as eglynn14:58
eglynnhttps://docs.google.com/presentation/d/1fLhsI1lbd3q3USya9Jqw749Z7rGdjoZwfwyxA1zHTVY/edit#slide=id.p1614:58
*** nati_ueno has joined #openstack-ceilometer15:00
openstackgerritgordon chung proposed a change to openstack/ceilometer: use urlparse from six  https://review.openstack.org/10035115:00
eglynnapparently the audio for the webinars will be up on the foundation channel on youtube shortly also15:03
eglynn... nothing controversial came up tho'15:03
eglynn... not a single question today from the webinar floor, for either cinder or ceilo15:04
* eglynn must have put everyone to sleep ... ;)15:04
*** alexpilotti has quit IRC15:04
*** alexpilotti has joined #openstack-ceilometer15:11
* cdent sighs15:16
cdentone aspect of my problem has been that javelin2 doesn't work with neutron (yet)15:17
*** psharma has joined #openstack-ceilometer15:22
*** rbowen has quit IRC15:27
*** rbowen has joined #openstack-ceilometer15:27
openstackgerritA change was merged to openstack/ceilometer-specs: Fixed typos found by RETF rules  https://review.openstack.org/9656515:29
openstackgerritgordon chung proposed a change to openstack/ceilometer-specs: Logging Guidelines for Ceilometer  https://review.openstack.org/9726115:31
*** changbl has joined #openstack-ceilometer15:32
*** cdent_ has joined #openstack-ceilometer15:38
*** cdent has quit IRC15:40
*** cdent_ is now known as cdent15:40
openstackgerritgordon chung proposed a change to openstack/ceilometer-specs: 'big-data' sql part 2  https://review.openstack.org/10100915:40
openstackgerritgordon chung proposed a change to openstack/ceilometer-specs: 'big-data' sql part 2  https://review.openstack.org/10100915:41
*** fnaval has quit IRC15:41
*** cdent has quit IRC15:42
*** cdent has joined #openstack-ceilometer15:43
openstackgerritFabio Giannetti proposed a change to openstack/ceilometer-specs: Adding support for health check in Ceilometer API  https://review.openstack.org/9581715:45
*** dmsimard has quit IRC15:46
*** dmsimard has joined #openstack-ceilometer15:47
*** vrovachev has quit IRC15:48
*** Qiming has quit IRC16:01
*** Ruetobas has quit IRC16:01
openstackgerritgordon chung proposed a change to openstack/ceilometer-specs: 'big-data' sql part 2  https://review.openstack.org/10100916:01
*** prad_ has joined #openstack-ceilometer16:03
*** Ruetobas has joined #openstack-ceilometer16:03
*** fnaval has joined #openstack-ceilometer16:06
openstackgerritFabio Giannetti proposed a change to openstack/ceilometer-specs: Central Agent High Availability in Active/Active State  https://review.openstack.org/10128216:06
*** Ruetobas has quit IRC16:08
*** _cjones_ has joined #openstack-ceilometer16:08
openstackgerritgordon chung proposed a change to openstack/ceilometer-specs: Logging Guidelines for Ceilometer  https://review.openstack.org/9726116:10
*** Ruetobas has joined #openstack-ceilometer16:14
*** nati_ueno has quit IRC16:17
*** inc0 has quit IRC16:18
*** promulo_ has quit IRC16:21
*** promulo has joined #openstack-ceilometer16:24
*** yjiang5 is now known as yjiang5_away16:33
*** isviridov is now known as isviridov|away16:43
*** gordc has quit IRC16:49
openstackgerritPhil Neal proposed a change to openstack/ceilometer-specs: PaaS Event Format for Ceilometer Collection  https://review.openstack.org/10196716:51
*** yjiang5_away is now known as yjiang516:51
*** harlowja_away is now known as harlowja16:55
openstackgerritA change was merged to openstack/ceilometer: Updated from global requirements  https://review.openstack.org/9681916:55
openstackgerritPhil Neal proposed a change to openstack/ceilometer-specs: PaaS Event Format for Ceilometer Collection  https://review.openstack.org/10196716:56
*** cdent_ has joined #openstack-ceilometer16:58
*** cdent has quit IRC17:00
*** cdent_ is now known as cdent17:00
*** rbowen has quit IRC17:00
*** rbowen has joined #openstack-ceilometer17:00
openstackgerritPhil Neal proposed a change to openstack/ceilometer-specs: PaaS Event Format for Ceilometer Collection  https://review.openstack.org/10196717:04
*** amarao has quit IRC17:15
* cdent goes to end of school year art show, back later17:24
*** cdent has quit IRC17:24
*** rwsu has joined #openstack-ceilometer17:25
*** nealph has quit IRC17:26
*** gordc has joined #openstack-ceilometer17:32
*** ildikov has quit IRC17:34
*** openstackgerrit has quit IRC17:35
*** openstackgerrit has joined #openstack-ceilometer17:36
*** _nadya_ has quit IRC17:45
openstackgerritA change was merged to openstack/pycadf: Updated from global requirements  https://review.openstack.org/9909117:54
*** yjiang5 is now known as yjiang5_away17:57
openstackgerritA change was merged to openstack/ceilometer: Fix HBase available capabilities list  https://review.openstack.org/10215918:00
*** Qiming has joined #openstack-ceilometer18:04
*** harlowja has quit IRC18:04
*** fnaval has quit IRC18:06
*** harlowja has joined #openstack-ceilometer18:07
*** harlowja has quit IRC18:07
*** psharma has quit IRC18:11
*** Qiming has quit IRC18:13
*** _nadya_ has joined #openstack-ceilometer18:15
*** psharma has joined #openstack-ceilometer18:18
*** gordc has quit IRC18:22
*** fnaval has joined #openstack-ceilometer18:25
*** harlowja has joined #openstack-ceilometer18:26
*** harlowja has quit IRC18:26
*** harlowja has joined #openstack-ceilometer18:26
*** harlowja has quit IRC18:26
*** _nadya_ has quit IRC18:27
*** harlowja has joined #openstack-ceilometer18:27
*** harlowja has quit IRC18:27
*** _nadya_ has joined #openstack-ceilometer18:27
*** gordc has joined #openstack-ceilometer18:28
*** harlowja has joined #openstack-ceilometer18:28
*** harlowja has quit IRC18:28
*** harlowja has joined #openstack-ceilometer18:29
*** harlowja has quit IRC18:29
*** harlowja has joined #openstack-ceilometer18:29
*** harlowja has quit IRC18:29
*** psharma has quit IRC18:33
*** harlowja has joined #openstack-ceilometer18:34
*** harlowja has quit IRC18:34
*** harlowja has joined #openstack-ceilometer18:39
*** harlowja has quit IRC18:39
openstackgerritA change was merged to openstack/python-ceilometerclient: Add methods to resource classes  https://review.openstack.org/9155418:40
*** harlowja has joined #openstack-ceilometer18:40
*** harlowja has quit IRC18:40
*** harlowja has joined #openstack-ceilometer18:42
*** harlowja has left #openstack-ceilometer18:47
*** erecio has quit IRC18:55
*** jdob has quit IRC18:57
*** jdob has joined #openstack-ceilometer18:58
*** _nadya_ has quit IRC19:08
*** jdob has quit IRC19:09
*** jdob has joined #openstack-ceilometer19:09
*** ildikov has joined #openstack-ceilometer19:11
*** cdent has joined #openstack-ceilometer19:18
*** thomasem has quit IRC19:18
*** jergerber has joined #openstack-ceilometer19:29
*** dhellman_ has joined #openstack-ceilometer19:35
*** Underyx|off has quit IRC19:51
*** thomasem has joined #openstack-ceilometer19:51
eglynnamalagon: o/19:52
*** cdent_ has joined #openstack-ceilometer19:53
*** _nadya_ has joined #openstack-ceilometer19:54
*** cdent has quit IRC19:54
*** cdent_ is now known as cdent19:54
eglynnamalagon: I gave your "Options for Period-Spanning Statistics in Gnocchi" doc another pass20:04
eglynnamalagon: ... it's converging onto something useful I think :)20:04
*** _nadya_ has quit IRC20:07
dmsimardCould a ceilometer-collector talk to multiple different rabbitmq instances ?20:10
dmsimardAs in, instead of a cluster of three rabbitmq nodes, it'd be three standalone rabbitmq nodes20:10
*** fnaval has quit IRC20:17
*** fnaval has joined #openstack-ceilometer20:18
gordcdmsimard: i feel like we just added that recently. let me dig it up. if anything you could start multiple collector services but that might be too heavyweight for what you need.20:20
gordcdmsimard: nevermind. seems like it was checked into oslo.messaging but i don't think there's a release with that patch yet: https://review.openstack.org/#/c/78948/20:22
*** fnaval has quit IRC20:22
*** jergerber has quit IRC20:26
*** fnaval has joined #openstack-ceilometer20:27
dmsimardgordc: I might consider running multiple collectors, I'll see. Thanks.20:38
gordcnp20:39
cdenteglynn: you still about? I have a process question.20:43
eglynncdent: 5 mins, on the TC meeting right now20:43
cdentroger20:44
*** nati_ueno has joined #openstack-ceilometer20:48
eglynn... the wind at the TC meeting is blowing against /me's election proposal20:49
eglynn:(20:49
eglynncdent: anyhoo, what was the q?20:49
cdentso they haven't been reading the postive responses to your proposal20:50
cdentI have a sort spike implementation of the ceilometer in javelin220:50
eglynncdent: cool, propose as a WIP patch on gerrit?20:51
cdentI'll do that, but it seems an odd way to proceed with something that I would expect to change rather a lot. The collaboration in gerrit for that sort of thing seems quite awkward.20:52
cdentBut if that's the style, that's cool.20:52
eglynncdent: ... I kinda like the early-eyes approach even if you expect to change substantially20:52
eglynncdent: ... good for showing forward progress20:53
eglynncdent: ... plus early feedback may minimize the cost of later correction20:53
cdentWell, that's what I mean: I also like early eyes. I guess it is gerrit that I don't like. It makes it difficult to actually collaborate directly on the code itself20:53
cdentAlso, I had a ton of complexity getting things to do: the tempest code is set up in such a way that it swallows exceptions and just exits without telling you anything20:54
cdentin the logs you get the exception message but _not_ the actual exception20:55
cdentso, for example, if you `raise TypeError('ow')` somewhere, you get 'ow' in the tempest.log20:55
cdentwas thrilling20:55
cdentanyway, while my network is still working (it is being lame to day) I'll push the stuff up to gerrit as WIP and see what happens20:56
eglynncdent: "I guess it is gerrit that I don't like" ==> you'll learn to love it in time ;)20:56
cdenti'm keeping tabs on that20:57
*** jdob has quit IRC20:58
*** nati_ueno has quit IRC21:02
*** nati_ueno has joined #openstack-ceilometer21:02
*** terriyu has joined #openstack-ceilometer21:05
*** julim has quit IRC21:08
*** rbowen has quit IRC21:16
*** changbl has quit IRC21:19
amalagoneglynn: o/21:25
eglynnamalagon: just a heads-up earlier ^^^ that gave your googledoc another pass21:26
amalagoneglynn: yeah, looking at the comments now, thx21:27
*** nealph has joined #openstack-ceilometer21:28
eglynnamalagon: coolio21:28
openstackgerritBrant Knudson proposed a change to openstack/ceilometer: Use auth_token from keystonemiddleware  https://review.openstack.org/10235321:30
cdenteglynn: I've pushed and invited you to review21:37
eglynncdent: thank you sir!21:37
cdentI'm off to bed now to be properly fresh for tomorrow's adventures.21:38
*** cdent has quit IRC21:39
*** thomasem has quit IRC21:45
*** changbl has joined #openstack-ceilometer21:48
*** yjiang5_away is now known as yjiang521:51
*** nati_ueno has quit IRC21:53
amalagoneglynn: added to summary - basically what are our options are for data-retention vs roll-up21:53
*** nati_ueno has joined #openstack-ceilometer21:54
eglynnamalagon: thanks, will looks after project/release status meeting wraps up21:54
boris-42eglynn wooohooo it's ready https://review.openstack.org/#/c/102362/21:54
eglynnboris-42 wins prize for best commit-message-lenght to lines-changed ratio in a patch, ever!21:55
boris-42eglynn lol=)21:56
boris-42eglynn heh now I can work on spec for ceilometer=)21:56
eglynnboris-42: cool :)21:57
boris-42eglynn but not sure what should I write there21:57
boris-42eglynn I mean I need that plugin to collect messages from profiler, and I won't to do mess in notifications exchange.21:57
boris-42eglynn it's all that I know lol=)21:57
*** dhellman_ has quit IRC22:00
*** jaypipes has quit IRC22:11
*** nijaba has quit IRC22:13
*** nijaba has joined #openstack-ceilometer22:15
*** nijaba has quit IRC22:15
*** nijaba has joined #openstack-ceilometer22:15
*** dmsimard is now known as dmsimard_away22:20
*** Longgeek has quit IRC22:32
*** eglynn has quit IRC22:32
*** nijaba_ has joined #openstack-ceilometer22:36
*** nijaba has quit IRC22:36
*** nijaba_ has quit IRC22:45
*** boris-42 has quit IRC22:46
*** nijaba has joined #openstack-ceilometer22:51
*** rbowen has joined #openstack-ceilometer22:56
*** fnaval has quit IRC22:56
*** nijaba has quit IRC22:58
*** gordc has quit IRC23:00
*** boris-42 has joined #openstack-ceilometer23:02
*** rbowen has quit IRC23:04
*** changbl has quit IRC23:05
*** _nadya_ has joined #openstack-ceilometer23:08
*** ddieterly has quit IRC23:09
*** _nadya_ has quit IRC23:12
*** ifarkas has quit IRC23:13
*** jaypipes has joined #openstack-ceilometer23:43
*** amalagon has quit IRC23:45
*** safchain has quit IRC23:58

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