*** julienvey_ has quit IRC | 00:13 | |
*** gordc has quit IRC | 00:16 | |
*** sandywalsh has quit IRC | 00:42 | |
*** asalkeld has joined #openstack-ceilometer | 01:10 | |
openstackgerrit | Lianhao Lu proposed a change to openstack/ceilometer: Drop foreign key contraints of alarm in sqlalchemy https://review.openstack.org/65018 | 01:14 |
---|---|---|
openstackgerrit | Jia Dong proposed a change to openstack/ceilometer: Implement meter query by 'counter_volume' field https://review.openstack.org/67384 | 01:24 |
*** jaypipes has quit IRC | 01:37 | |
*** flwang has quit IRC | 02:02 | |
*** gordc has joined #openstack-ceilometer | 02:12 | |
*** gordc has quit IRC | 02:40 | |
*** flwang has joined #openstack-ceilometer | 02:46 | |
*** asalkeld has quit IRC | 02:51 | |
*** flwang has quit IRC | 03:16 | |
*** flwang has joined #openstack-ceilometer | 03:16 | |
*** asalkeld has joined #openstack-ceilometer | 03:45 | |
*** asalkeld has left #openstack-ceilometer | 03:45 | |
openstackgerrit | ZhiQiang Fan proposed a change to openstack/ceilometer: Removes use of timeutils.set_time_override https://review.openstack.org/67826 | 04:22 |
*** adriant has quit IRC | 04:53 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 05:06 | |
*** adriant has joined #openstack-ceilometer | 05:16 | |
*** asalkeld has joined #openstack-ceilometer | 05:22 | |
*** asalkeld has left #openstack-ceilometer | 05:24 | |
*** ildikov_ has quit IRC | 06:01 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 06:12 | |
openstackgerrit | Jenkins proposed a change to openstack/ceilometer: Imported Translations from Transifex https://review.openstack.org/62808 | 06:13 |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 06:13 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 06:42 | |
*** gcb has joined #openstack-ceilometer | 07:18 | |
*** gcb has left #openstack-ceilometer | 07:23 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 07:29 | |
*** nadya__ has joined #openstack-ceilometer | 07:31 | |
*** nadya__ has quit IRC | 07:31 | |
openstackgerrit | Lianhao Lu proposed a change to openstack/ceilometer: Added hardware agent's inspector and snmp implementation https://review.openstack.org/43073 | 07:39 |
*** ildikov_ has joined #openstack-ceilometer | 07:51 | |
*** s2r2_ has joined #openstack-ceilometer | 08:05 | |
*** _ruhe is now known as ruhe | 08:11 | |
*** julienvey_ has joined #openstack-ceilometer | 08:19 | |
*** julienvey_ has quit IRC | 08:28 | |
openstackgerrit | Dazhao Yu proposed a change to openstack/ceilometer: Make sure use IPv6 sockets for ceilometer in IPv6 environment https://review.openstack.org/67786 | 08:29 |
openstackgerrit | Dazhao Yu proposed a change to openstack/ceilometer: Make sure use IPv6 sockets for ceilometer in IPv6 environment https://review.openstack.org/67786 | 08:31 |
openstackgerrit | Lianhao Lu proposed a change to openstack/ceilometer: Added hardware pollsters for the central agent https://review.openstack.org/43074 | 08:31 |
llu | anyone around? https://review.openstack.org/58489 needs approval. It was approved before, but have to go the 2nd round due to some merge conflict. | 08:32 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 08:37 | |
*** yassine has joined #openstack-ceilometer | 08:47 | |
nadya_ | Ceilometer team, we need approval https://review.openstack.org/#/c/55276/30 . Do we have Tempest core team members here :)? | 08:52 |
*** krast has joined #openstack-ceilometer | 08:57 | |
*** boris-42 has quit IRC | 09:00 | |
*** boris-42 has joined #openstack-ceilometer | 09:00 | |
*** s2r2_ has quit IRC | 09:01 | |
*** Alexei_987 has joined #openstack-ceilometer | 09:18 | |
Alexei_987 | jd__: Hi. I can answer your questions about my patch if needed | 09:19 |
jd__ | Alexei_987: "later this code will be valid" is never going to convince anyone | 09:24 |
jd__ | :) | 09:24 |
Alexei_987 | jd__: I don't understand why you want to use static methods everywhere | 09:24 |
Alexei_987 | jd__: It don't make much sense for me | 09:24 |
jd__ | Alexei_987: because that's correct | 09:24 |
Alexei_987 | why? | 09:24 |
Alexei_987 | my IMHO that statis methods are the methods that are static by design and are not connected logically to any class instance | 09:25 |
Alexei_987 | s/statis/static | 09:25 |
Alexei_987 | why should I make method static and in the next commit make it non static? | 09:26 |
Alexei_987 | especially in python where static is just a way to drop self variable | 09:26 |
jd__ | Alexei_987: http://julien.danjou.info/blog/2013/guide-python-static-class-abstract-methods | 09:27 |
Alexei_987 | Ok I've read it... "seeing @staticmethod, we know that the method does not depend on the state of object itself;" that's exactly my point this method does depend on the state of the object | 09:30 |
Alexei_987 | by design | 09:30 |
jd__ | Alexei_987: it does not since it's not using self | 09:30 |
Alexei_987 | but it does "by design" | 09:30 |
Alexei_987 | even not using self | 09:30 |
jd__ | wat? | 09:30 |
jd__ | that doesn't make any sense | 09:31 |
Alexei_987 | I've created it to connect db session to Connection object | 09:31 |
jd__ | the method is not different for each instance | 09:31 |
jd__ | so it's _static_ | 09:31 |
jd__ | i.e. you could put it outside the class itself, it wouldn't make any difference | 09:31 |
Alexei_987 | *facepalm* ok so how should I fix it? | 09:31 |
Alexei_987 | make it static and in the next patch make it non static? | 09:31 |
jd__ | lol | 09:31 |
jd__ | yes! | 09:31 |
Alexei_987 | *double-facepalm* | 09:32 |
Alexei_987 | ok | 09:32 |
jd__ | but as I said, the next patch should likely remove that methods | 09:32 |
jd__ | -s | 09:32 |
jd__ | (I wrote that in the review) | 09:32 |
Alexei_987 | yes but do you think it will improve readability? | 09:32 |
jd__ | readability is subjective, I don't argue on that | 09:32 |
jd__ | I argue on code correctness | 09:32 |
Alexei_987 | self._get_db_session.close_all() | 09:32 |
Alexei_987 | and I do argue about readability | 09:33 |
jd__ | then do it alone :) | 09:33 |
Alexei_987 | user will have to read __init__ method | 09:33 |
jd__ | s/user/developer/ | 09:33 |
Alexei_987 | user - developer who uses your class | 09:33 |
Alexei_987 | and he will also have to read several other methods to find out how it can be used | 09:34 |
Alexei_987 | so I would like to leave it :) | 09:34 |
Alexei_987 | ok I'll update the patches in 30 minutes.. | 09:35 |
nadya_ | jd__, hi! I've already asked you about parallel tests for dbs. You said that for Mongo and SQL the separate db is created. But I cannot find it in the code :( Could you please help me? | 09:46 |
sileht | nadya_, on bottom of ceilometer/tests/db.py you have the scenarions that define each db backends and some of them create a random database_connection uri by implementing the __str__ method | 09:50 |
nadya_ | sileht, thanks you a lot! My colleagues have started to work on another OS project and they are trying to create pecan tests. Ceilometer is a good example | 09:53 |
llu | jd__: https://review.openstack.org/58489 needs re-approval. It was approved before, but have to go 2nd round due to some merge conflict | 09:54 |
jd__ | nadya_: ceilometer/tests/db.py check the class used for mongo, we use a different db each time | 09:54 |
jd__ | for sql, the patches are still under review | 09:54 |
jd__ | llu: taking care thx | 09:54 |
llu | jd__: thx hope no need for another round. Seems a very very long gate queue | 09:55 |
jd__ | 60 hours :/ | 09:55 |
llu | jd__: and about the -2 https://review.openstack.org/58747, can you give me a brief description about what's your concern of the 'generalization issue'? Can I add this topic into this week's IRC meeting for further discussion? | 09:58 |
jd__ | llu: yeah, I think you send a mail about that, didn't have time to reply yet | 09:58 |
llu | jd__: ok, i'll add that topic into this week's IRC meeting schedule, for further discussion. | 10:00 |
ruhe | jd__: speaking of database stuff. what would you say if we make all the DB tests opportunistic? that's how they run tests for nova migrations - run tests for specific DB only if DB is present, otherwise skip | 10:02 |
ruhe | with exception to sqlite of course | 10:03 |
jd__ | ruhe: did you check the work we did and that is under review in this regard? | 10:03 |
ruhe | jd__: i see 2 patches from you to run mysql and postgres. but the still raise exception if url is not found in env. is there another patch? | 10:04 |
jd__ | ruhe: no | 10:05 |
jd__ | ruhe: as you can see in the patch, not raising an exception if the URL is not set is pretty trivial, the big challenge is to have this patches pass first anyway | 10:05 |
ruhe | agree | 10:07 |
*** sileht has quit IRC | 10:11 | |
*** Alexei_9871 has joined #openstack-ceilometer | 10:11 | |
ruhe | jd__: i was going to introduce a patch which would make mongodb optional for ceilometer tests | 10:12 |
Alexei_9871 | jd__: sorry I have another stupid question | 10:12 |
*** Alexei_987 has quit IRC | 10:12 | |
Alexei_9871 | jd__: If I'll make _get_db_session static does this means that I should also use it as static and don't change other methods to be non-static? | 10:13 |
jd__ | ruhe: that wouldn't help, what would help is splitting test so we can run things independently rather, sileht has been working on that a bit already | 10:13 |
jd__ | Alexei_9871: no, you need to use self.method() to use it, otherwise that would break inheritance | 10:14 |
jd__ | Alexei_9871: if I undertand your question correctly | 10:14 |
Alexei_9871 | no | 10:14 |
Alexei_9871 | https://review.openstack.org/#/c/67850/1/ceilometer/storage/impl_sqlalchemy.py | 10:14 |
Alexei_9871 | I remove static method decorator from def _real_record_metering_data(self, data): for example | 10:15 |
Alexei_9871 | to use _get_db_session from self | 10:15 |
ruhe | jd__: ok, thank you. i'll see if there is smth i could help with | 10:15 |
Alexei_9871 | but it doesn't makes sense in case _get_db_session is actually static | 10:15 |
*** Alexei_9871 has left #openstack-ceilometer | 10:16 | |
*** Alexei_9871 has joined #openstack-ceilometer | 10:16 | |
*** sileht has joined #openstack-ceilometer | 10:21 | |
openstackgerrit | Alexei Kornienko proposed a change to openstack/ceilometer: Handle engine creation inside of Connection object https://review.openstack.org/67851 | 10:28 |
openstackgerrit | Alexei Kornienko proposed a change to openstack/ceilometer: Refactored session access https://review.openstack.org/67850 | 10:28 |
*** flwang has quit IRC | 10:30 | |
openstackgerrit | Alexei Kornienko proposed a change to openstack/ceilometer: Handle engine creation inside of Connection object https://review.openstack.org/67851 | 10:33 |
openstackgerrit | Alexei Kornienko proposed a change to openstack/ceilometer: Refactored session access https://review.openstack.org/67850 | 10:33 |
*** krast has quit IRC | 10:34 | |
*** krast has joined #openstack-ceilometer | 10:36 | |
*** Alexei_9871 has left #openstack-ceilometer | 10:36 | |
*** boris-42 has quit IRC | 10:38 | |
*** asalkeld has joined #openstack-ceilometer | 10:38 | |
*** yassine has quit IRC | 10:38 | |
*** ruhe is now known as _ruhe | 10:39 | |
*** Alexei_9871 has joined #openstack-ceilometer | 10:41 | |
*** Alexei_9871 has left #openstack-ceilometer | 10:41 | |
*** yassine has joined #openstack-ceilometer | 10:42 | |
*** yassine has quit IRC | 10:50 | |
*** yassine has joined #openstack-ceilometer | 10:50 | |
*** _ruhe is now known as ruhe | 10:54 | |
*** Alexei_9871 has joined #openstack-ceilometer | 10:55 | |
openstackgerrit | Ildiko Vancsa proposed a change to openstack/ceilometer: Fix the Alarm documentation of Web API V2 https://review.openstack.org/68071 | 10:55 |
*** yassine has quit IRC | 10:57 | |
*** Alexei_9871 is now known as Alexei_987 | 10:58 | |
*** kwhitney has quit IRC | 11:03 | |
*** yassine has joined #openstack-ceilometer | 11:10 | |
*** kwhitney has joined #openstack-ceilometer | 11:11 | |
*** sayali has joined #openstack-ceilometer | 11:12 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 11:15 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 11:19 | |
ildikov_ | jd__: ping | 11:19 |
*** yassine has quit IRC | 11:21 | |
*** yassine has joined #openstack-ceilometer | 11:23 | |
*** eglynn has joined #openstack-ceilometer | 11:28 | |
*** s2r2_ has joined #openstack-ceilometer | 12:01 | |
*** ruhe is now known as _ruhe | 12:05 | |
*** boris-42 has joined #openstack-ceilometer | 12:05 | |
*** _ruhe is now known as ruhe | 12:11 | |
*** s2r2_ has quit IRC | 12:13 | |
eglynn | jd__: good afternoon, sir! | 12:20 |
eglynn | jd__: WRT the Atlanta summit CFP ... thinking about a ceilo submission? | 12:20 |
eglynn | I had the semi-formed notion to propose a 'Quo Vadis Ceilometer?' style session | 12:21 |
eglynn | (a lot acheived, loads more to do, here's we're thinking of heading next at a high level, yada yada ...) | 12:21 |
eglynn | meh! ... /me mixes latin with greek etymology | 12:22 |
eglynn | classy-like ... as we say in Dublin ;) | 12:22 |
eglynn | jd__: anyhoo, if you've an interest in doing a joint preso as per HK, gimme a shout ... | 12:23 |
jd__ | eglynn: why not :) | 12:27 |
jd__ | no idea on the topic per say, but we can probably do one | 12:28 |
eglynn | jd__: cool! ... how does the 'what next' idea above grab you? | 12:28 |
*** flwang has joined #openstack-ceilometer | 12:29 | |
eglynn | ... could be a placeholder for many different things ;) | 12:29 |
* eglynn feels an etherpad coming on ... ;) | 12:31 | |
eglynn | one sec ... | 12:31 |
eglynn | https://etherpad.openstack.org/p/QuoVadisCeilo | 12:33 |
eglynn | jd__: feel free to hack on that ^^^ ... change the language or even topic if you've a better idea | 12:33 |
jd__ | eglynn: that looks good | 12:35 |
eglynn | jd__: awesome sauce! ... I'll go ahead and propose with us both as co-presenters | 12:36 |
eglynn | ... unless nijaba would also like to reprise his MC role? | 12:37 |
jd__ | eglynn: I think we'll be enough :) | 12:38 |
eglynn | jd__: grandeo, I'll pull the trigger on it so | 12:38 |
*** sayali has quit IRC | 12:41 | |
*** sayali has joined #openstack-ceilometer | 12:42 | |
*** asalkeld has quit IRC | 12:51 | |
*** xuhanp has joined #openstack-ceilometer | 12:52 | |
eglynn | jd__: FYI ... http://www.openstack.org/summit/openstack-summit-atlanta-2014/call-for-speakers/TalkDetails/708 | 12:52 |
jd__ | ack :) | 12:53 |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 13:02 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 13:03 | |
*** asalkeld has joined #openstack-ceilometer | 13:03 | |
*** asalkeld has quit IRC | 13:04 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 13:09 | |
*** eglynn is now known as eglynn-lunch | 13:17 | |
*** AMike has quit IRC | 13:19 | |
*** Alexei_987 has quit IRC | 13:30 | |
*** jdob has joined #openstack-ceilometer | 13:31 | |
*** ruhe is now known as _ruhe | 13:42 | |
*** _ruhe is now known as ruhe | 13:45 | |
*** thomasem has joined #openstack-ceilometer | 13:52 | |
*** tongli has joined #openstack-ceilometer | 13:54 | |
*** flwang has quit IRC | 13:59 | |
*** jdob_ has joined #openstack-ceilometer | 14:08 | |
*** sayali has quit IRC | 14:09 | |
*** yassine has quit IRC | 14:21 | |
*** yassine has joined #openstack-ceilometer | 14:22 | |
*** gordc has joined #openstack-ceilometer | 14:27 | |
nadya_ | gordc, hi! | 14:27 |
gordc | nadya_: hi, whatsup? | 14:27 |
nadya_ | gordc, I decided to get rid of recursive_keypairs instead of dict_to_keyval. To make query by list items available. and change flatten_metadata in next API. what do you think? I've created a patch already | 14:29 |
gordc | change flatten_metadata in next API... you mean a v3 API? | 14:31 |
nadya_ | gordc, yes | 14:33 |
gordc | nadya_: that seems fine for retreiving data. | 14:34 |
*** jdob_ has quit IRC | 14:34 | |
gordc | i think we need to look at how lists are currently being saved in db when posting samples. if it's broken already then it's not really an issue. but if it's storing samples in a certain way right now we might need to do some db migration. | 14:34 |
nadya_ | gordc, I think it will be clear for you from my patch. I will publish it in 5 min | 14:35 |
gordc | ok cool. i'll take a look at that. | 14:35 |
gordc | i doubt it'll get into icehouse-2 based on how slowly patches are merging. | 14:36 |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 14:42 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 14:43 | |
*** prad has joined #openstack-ceilometer | 14:44 | |
*** prad has quit IRC | 14:46 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 14:50 | |
nadya_ | gordc, looks like I cannot upload new change :( I need https://review.openstack.org/#/c/52670/11 merged first. Cannot rebase in a proper way without update approved patch | 14:53 |
*** boris-42 has quit IRC | 14:54 | |
*** terriyu has joined #openstack-ceilometer | 14:57 | |
*** flwang has joined #openstack-ceilometer | 15:01 | |
*** chmouel has quit IRC | 15:05 | |
*** chmouel_ has joined #openstack-ceilometer | 15:05 | |
*** chmouel_ is now known as chmouel | 15:06 | |
*** prad has joined #openstack-ceilometer | 15:07 | |
*** IvanBerezovskiy has left #openstack-ceilometer | 15:08 | |
*** yassine has quit IRC | 15:08 | |
*** yassine has joined #openstack-ceilometer | 15:09 | |
gordc | nadya_: np. we can wait on the patch anyways. | 15:10 |
openstackgerrit | A change was merged to openstack/ceilometer: Name and unit mapping for rate_of_change transformer https://review.openstack.org/66657 | 15:16 |
*** eglynn-lunch is now known as eglynn | 15:17 | |
*** yassine has quit IRC | 15:35 | |
*** yassine has joined #openstack-ceilometer | 15:35 | |
nadya_ | eglynn, hi! Sorry for delay in aggregation activity. I've added some comments here https://etherpad.openstack.org/p/ceilometer-aggregation and created two patches for sql https://review.openstack.org/#/c/67856/ and https://review.openstack.org/#/c/67870/ . I think it is more easy for reviewers to start with normal SQL instead of HBase. Please, take a look if you have time. I need the decision about this functionality, because I want to be sur | 15:40 |
eglynn | cool, I'll look at the etherpad and sql patch by EoD | 15:40 |
eglynn | nadya_: ^^^ | 15:40 |
*** adriant has quit IRC | 15:41 | |
nadya_ | eglynn, ok, thanks! I will answer any of your concerns faster then before, because it has the highest priority for me | 15:44 |
*** sandywalsh has joined #openstack-ceilometer | 15:50 | |
openstackgerrit | Julien Danjou proposed a change to openstack/ceilometer: eventlet: stop monkey patching https://review.openstack.org/68145 | 15:50 |
openstackgerrit | Julien Danjou proposed a change to openstack/ceilometer: Allow pytidylib to be installed from external source https://review.openstack.org/68149 | 15:54 |
openstackgerrit | Julien Danjou proposed a change to openstack/ceilometer: Use swift master https://review.openstack.org/68150 | 15:54 |
openstackgerrit | Julien Danjou proposed a change to openstack/ceilometer: tests: kill all started processes on exit https://review.openstack.org/65509 | 15:54 |
openstackgerrit | Julien Danjou proposed a change to openstack/ceilometer: storage: bases of a Cassandra driver https://review.openstack.org/62779 | 15:54 |
*** sandywalsh has left #openstack-ceilometer | 15:57 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 15:57 | |
*** kwhitney has quit IRC | 16:02 | |
*** boris-42 has joined #openstack-ceilometer | 16:02 | |
*** xuhanp has quit IRC | 16:10 | |
*** prad has quit IRC | 16:11 | |
*** prad has joined #openstack-ceilometer | 16:12 | |
*** kwhitney has joined #openstack-ceilometer | 16:14 | |
openstackgerrit | Nadya Privalova proposed a change to openstack/ceilometer: Aggregation for SQL backend https://review.openstack.org/67856 | 16:40 |
openstackgerrit | Nadya Privalova proposed a change to openstack/ceilometer: Use aggregated values when get statistics https://review.openstack.org/67870 | 16:40 |
openstackgerrit | Balazs Gibizer proposed a change to openstack/ceilometer: Move enable_acl and debug config to ceilometer.conf https://review.openstack.org/68166 | 16:42 |
openstackgerrit | gordon chung proposed a change to stackforge/pycadf: adjust typeURI to capture target better https://review.openstack.org/68169 | 16:50 |
eglynn | nadya_: FYI I've left some further comments on etherpad and gerrit, I'll check back later | 17:00 |
nadya_ | eglynn, thank you very much! I need to go now. Will take a look tomorrow | 17:01 |
eglynn | nadya_: sure, no rush! ... chat further tmrw so | 17:02 |
*** eglynn is now known as eglynn-afk | 17:03 | |
*** s2r2_ has joined #openstack-ceilometer | 17:06 | |
*** ildikov_ has quit IRC | 17:18 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 17:22 | |
*** eglynn-afk is now known as eglynn | 17:33 | |
eglynn | jd__, dhellmann, sileht, gordc: this i-2 targeted patch is still a +1 short of getting over the line in time for the milestone: https://review.openstack.org/67161 | 17:39 |
eglynn | (if any core has some spare review cycles today ...) | 17:39 |
eglynn | thanks! | 17:39 |
*** ildikov has joined #openstack-ceilometer | 17:50 | |
*** eglynn has quit IRC | 17:51 | |
*** ruhe is now known as _ruhe | 17:57 | |
*** s2r2_ has quit IRC | 18:00 | |
*** nadya__ has joined #openstack-ceilometer | 18:09 | |
openstackgerrit | Marc Solanas proposed a change to openstack/python-ceilometerclient: Checking the type of auth_token, and fixing it if necessary https://review.openstack.org/58051 | 18:11 |
*** nadya__ has quit IRC | 18:18 | |
*** sayali has joined #openstack-ceilometer | 18:27 | |
*** sayali_ has joined #openstack-ceilometer | 18:27 | |
*** sayali has quit IRC | 18:27 | |
*** xmltok has joined #openstack-ceilometer | 18:30 | |
*** ildikov_ has joined #openstack-ceilometer | 18:42 | |
*** Alexei_987 has joined #openstack-ceilometer | 18:44 | |
*** ildikov_ has quit IRC | 18:47 | |
*** sayali_ has quit IRC | 19:06 | |
*** ok_delta has joined #openstack-ceilometer | 19:08 | |
*** ok_delta__ has joined #openstack-ceilometer | 19:08 | |
*** terriyu has quit IRC | 19:11 | |
*** julienvey_ has joined #openstack-ceilometer | 19:11 | |
*** julienvey_ has quit IRC | 19:16 | |
openstackgerrit | Eoghan Glynn proposed a change to openstack/ceilometer: Exclude weak datapoints from alarm threshold evaluation https://review.openstack.org/67161 | 19:30 |
*** ildikov_ has joined #openstack-ceilometer | 19:38 | |
*** nadya__ has joined #openstack-ceilometer | 20:01 | |
*** nadya__ has quit IRC | 20:15 | |
*** prad_ has joined #openstack-ceilometer | 20:16 | |
*** prad has quit IRC | 20:17 | |
*** prad_ is now known as prad | 20:17 | |
openstackgerrit | Jenkins proposed a change to openstack/ceilometer: Updated from global requirements https://review.openstack.org/68237 | 20:23 |
*** s2r2_ has joined #openstack-ceilometer | 20:27 | |
*** jdob has quit IRC | 20:35 | |
*** jdob has joined #openstack-ceilometer | 20:36 | |
*** jdob has quit IRC | 20:47 | |
*** jdob has joined #openstack-ceilometer | 20:47 | |
*** tongli has quit IRC | 21:01 | |
*** gordc has quit IRC | 21:04 | |
*** prad has quit IRC | 21:05 | |
*** zul has quit IRC | 21:06 | |
*** ildikov has quit IRC | 21:08 | |
*** s2r2_ has quit IRC | 21:16 | |
*** prad has joined #openstack-ceilometer | 21:20 | |
*** gordc has joined #openstack-ceilometer | 21:25 | |
*** asalkeld has joined #openstack-ceilometer | 21:44 | |
*** jdob has quit IRC | 21:58 | |
*** asalkeld has quit IRC | 22:20 | |
*** yassine has quit IRC | 22:23 | |
*** prad has quit IRC | 22:27 | |
*** prad has joined #openstack-ceilometer | 22:28 | |
*** gordc has quit IRC | 22:30 | |
*** thomasem has quit IRC | 22:31 | |
*** asalkeld has joined #openstack-ceilometer | 22:33 | |
*** yassine has joined #openstack-ceilometer | 22:41 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 22:50 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 22:51 | |
*** prad has quit IRC | 22:56 | |
*** jaypipes has joined #openstack-ceilometer | 23:03 | |
*** xmltok has quit IRC | 23:39 | |
*** flwang has quit IRC | 23:42 | |
*** gordc has joined #openstack-ceilometer | 23:44 | |
*** flwang has joined #openstack-ceilometer | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!