| *** timandra has joined #openstack-ceilometer | 00:01 | |
| *** misheal has joined #openstack-ceilometer | 00:16 | |
| *** misheal has quit IRC | 00:25 | |
| *** suo_ has quit IRC | 00:34 | |
| *** urulama has joined #openstack-ceilometer | 04:58 | |
| *** leegy_ has joined #openstack-ceilometer | 05:03 | |
| *** SergeyLukjanov has joined #openstack-ceilometer | 05:11 | |
| openstackgerrit | Jenkins proposed a change to openstack/ceilometer: Imported Translations from Transifex https://review.openstack.org/60154 | 06:04 |
|---|---|---|
| *** SergeyLukjanov is now known as _SergeyLukjanov | 06:11 | |
| *** _SergeyLukjanov is now known as SergeyLukjanov | 06:20 | |
| openstackgerrit | Yuuichi Fujioka proposed a change to openstack/ceilometer: (WIP)Implements monitoring-network https://review.openstack.org/60473 | 07:30 |
| *** ildikov_ has joined #openstack-ceilometer | 07:59 | |
| *** SergeyLukjanov has quit IRC | 08:46 | |
| *** eglynn has joined #openstack-ceilometer | 09:01 | |
| *** sayali has joined #openstack-ceilometer | 09:11 | |
| *** sayali_ has joined #openstack-ceilometer | 09:11 | |
| *** sayali_ has quit IRC | 09:11 | |
| openstackgerrit | Alexei Kornienko proposed a change to openstack/ceilometer: Added profiler notification plugin https://review.openstack.org/60262 | 09:44 |
| *** SergeyLukjanov has joined #openstack-ceilometer | 10:24 | |
| *** Alexei_987 has quit IRC | 10:32 | |
| *** nprivalova has quit IRC | 10:40 | |
| *** sandywalsh has quit IRC | 10:47 | |
| *** sandywalsh has joined #openstack-ceilometer | 11:02 | |
| *** nprivalova has joined #openstack-ceilometer | 11:06 | |
| *** sayali has quit IRC | 11:17 | |
| *** sayali has joined #openstack-ceilometer | 11:18 | |
| *** Alexei_987 has joined #openstack-ceilometer | 11:25 | |
| *** nprivalova has quit IRC | 11:37 | |
| *** SergeyLukjanov has quit IRC | 11:51 | |
| *** SergeyLukjanov has joined #openstack-ceilometer | 11:52 | |
| *** urulama_ has joined #openstack-ceilometer | 11:54 | |
| *** urulama has quit IRC | 11:55 | |
| *** sayali has quit IRC | 11:57 | |
| *** sayali has joined #openstack-ceilometer | 11:58 | |
| *** eglynn has quit IRC | 12:02 | |
| openstackgerrit | Yuuichi Fujioka proposed a change to openstack/ceilometer: (WIP)Implements monitoring-network https://review.openstack.org/60473 | 12:12 |
| *** kwhitney has joined #openstack-ceilometer | 12:12 | |
| *** urulama_ has quit IRC | 12:27 | |
| *** thomasem has joined #openstack-ceilometer | 12:43 | |
| *** ityaptin has joined #openstack-ceilometer | 12:46 | |
| *** sayali has quit IRC | 13:04 | |
| *** sandywalsh has quit IRC | 13:04 | |
| *** sandywalsh has joined #openstack-ceilometer | 13:18 | |
| *** eglynn has joined #openstack-ceilometer | 13:23 | |
| sileht | jd__, I have continued to dig into mysql issue | 13:29 |
| sileht | jd__, the field 'generated' of the 'event' table of sql is small float that can't handle timestamp :( | 13:30 |
| *** jdob has joined #openstack-ceilometer | 13:30 | |
| sileht | I wonder why the datetime to float are handle manually in the drivers intead of using the PreciseTimestamp column type | 13:31 |
| *** jdob has quit IRC | 13:41 | |
| *** jdob has joined #openstack-ceilometer | 13:41 | |
| thomasem | hey everyone! | 13:49 |
| thomasem | sileht, evolution of the handling | 13:49 |
| thomasem | sileht, it was initially just done via decimals in all SQL data stores, and then when I went to correct some timestamp precision issues for samples we decided to take the custom column type approach (PreciseTimestamp) | 13:49 |
| thomasem | to make up for MySQL's until recent shortcomings and let other data stores do what they would otherwise do. | 13:50 |
| *** litong has joined #openstack-ceilometer | 13:50 | |
| thomasem | So, we should move over to using PreciseTimestamp | 13:51 |
| sileht | thomasem, yep event should use PreciseTimestamp too | 13:51 |
| thomasem | sileht, mhmm. Event was done before PreciseTimestamp was written. :P | 13:51 |
| sileht | thomasem, ok I understand now :) thanks | 13:52 |
| thomasem | sileht, Any time! | 13:52 |
| * sileht will provide a patch now | 13:53 | |
| litong | @thomasem, what do you mean by PreciseTimestamp? is it just a format? | 13:56 |
| thomasem | litong, https://github.com/openstack/ceilometer/blob/master/ceilometer/storage/sqlalchemy/models.py#L71-L96 | 13:57 |
| thomasem | litong, It's a custom column type for SQLAlchemy. You essentially provide some of the details to access/store data in special ways. | 13:58 |
| litong | @thomasem, oh, i c, I thought it is a new python library. | 13:58 |
| thomasem | litong, Ahhh, yep :) | 13:58 |
| thomasem | No new library there | 13:58 |
| *** gordc has joined #openstack-ceilometer | 13:59 | |
| litong | @thomasem, how will it affect other db implementations? | 14:00 |
| thomasem | litong, It won't. That's in sqlalchemy/models.py | 14:00 |
| litong | @thomasem, yeah, that is what I saw but should be the timestamp be unified cross all db implementations? | 14:01 |
| litong | is this a precision (microseconds) thing? | 14:02 |
| thomasem | litong, MySQL < 5.6 doesn't support subsecond precision. | 14:04 |
| litong | @thomasem, i c, did not know that. cool. thanks. | 14:04 |
| thomasem | litong, Although not as pertinent for samples, it's very important that we preserve fidelity for events. | 14:04 |
| thomasem | litong, Sure thing :) | 14:05 |
| *** jdob has quit IRC | 14:05 | |
| litong | @thomasem, agreed on that. for some apps, these microseconds are significant. | 14:05 |
| thomasem | yeppers | 14:05 |
| *** nprivalova has joined #openstack-ceilometer | 14:06 | |
| *** jdob has joined #openstack-ceilometer | 14:07 | |
| nprivalova | hi guys | 14:07 |
| thomasem | hey there | 14:07 |
| nprivalova | does anybody know why https://review.openstack.org/#/c/61958/ is failing? | 14:07 |
| nprivalova | we really need it for tempest | 14:08 |
| nprivalova | jd__,gordc, dhellman, eglynn ^^ | 14:08 |
| *** thomasm_ has joined #openstack-ceilometer | 14:15 | |
| *** thomasm_ has left #openstack-ceilometer | 14:17 | |
| *** eglynn_ has joined #openstack-ceilometer | 14:17 | |
| *** thomasm has joined #openstack-ceilometer | 14:19 | |
| *** thomasm is now known as Guest8385 | 14:20 | |
| *** 36DABYJCY has joined #openstack-ceilometer | 14:20 | |
| gordc | nprivalova: it's related to this bug i believe: https://bugs.launchpad.net/ceilometer/+bug/1243251 | 14:21 |
| *** thomasem has quit IRC | 14:23 | |
| *** eglynn has quit IRC | 14:23 | |
| *** asalkeld has quit IRC | 14:23 | |
| *** SergeyLukjanov is now known as _SergeyLukjanov | 14:24 | |
| *** _SergeyLukjanov has quit IRC | 14:24 | |
| *** 36DABYJCY has quit IRC | 14:25 | |
| nprivalova | gordc, thanks! may we tell Jenkins to take this bug into account? | 14:25 |
| *** mamamushi has joined #openstack-ceilometer | 14:27 | |
| *** vrovachev has joined #openstack-ceilometer | 14:27 | |
| *** lumbalumba has joined #openstack-ceilometer | 14:30 | |
| *** asalkeld has joined #openstack-ceilometer | 14:30 | |
| gordc | nprivalova: i believe we were told to fix this instead of whitelisting these errors in tempest. i'm not really sure what the status is on this. | 14:30 |
| nprivalova | gordc, oh :( | 14:31 |
| *** openstackgerrit has quit IRC | 14:31 | |
| *** openstackgerrit has joined #openstack-ceilometer | 14:31 | |
| *** lumbalumba has quit IRC | 14:34 | |
| *** mamamushi has quit IRC | 14:37 | |
| openstackgerrit | gordon chung proposed a change to stackforge/pycadf: sync requirements and oslo https://review.openstack.org/60693 | 14:56 |
| *** gordc has quit IRC | 15:04 | |
| *** asalkeld has quit IRC | 15:14 | |
| *** vrovachev has quit IRC | 15:14 | |
| *** asalkeld has joined #openstack-ceilometer | 15:15 | |
| *** SergeyLukjanov has joined #openstack-ceilometer | 15:17 | |
| openstackgerrit | Thomas Herve proposed a change to openstack/python-ceilometerclient: Fix alarm-combination-update operator argument https://review.openstack.org/62397 | 15:18 |
| *** terriyu has joined #openstack-ceilometer | 15:19 | |
| *** annegentle_ has joined #openstack-ceilometer | 15:19 | |
| openstackgerrit | David Peraza proposed a change to openstack/ceilometer: Add metadata query validation limitation https://review.openstack.org/61847 | 15:24 |
| *** terriyu has quit IRC | 15:26 | |
| *** Guest8385 is now known as thomasem | 15:31 | |
| *** gordc has joined #openstack-ceilometer | 15:32 | |
| *** litong has quit IRC | 15:38 | |
| *** vrovachev1 has joined #openstack-ceilometer | 15:44 | |
| *** vrovachev1 has left #openstack-ceilometer | 15:44 | |
| *** djbkd has joined #openstack-ceilometer | 15:45 | |
| *** dah has joined #openstack-ceilometer | 15:49 | |
| *** ityaptin_ has joined #openstack-ceilometer | 15:50 | |
| *** dah_ has quit IRC | 15:55 | |
| *** dhellmann_ has joined #openstack-ceilometer | 15:55 | |
| *** ityaptin has quit IRC | 15:56 | |
| *** dhellmann has quit IRC | 15:57 | |
| *** dhellmann_ is now known as dhellmann | 15:57 | |
| *** vrovachev has joined #openstack-ceilometer | 16:03 | |
| *** litong has joined #openstack-ceilometer | 16:08 | |
| *** litong has quit IRC | 16:14 | |
| openstackgerrit | Thomas Herve proposed a change to openstack/python-ceilometerclient: Display message on HTTP 400 https://review.openstack.org/62412 | 16:14 |
| *** chmouel has quit IRC | 16:18 | |
| *** dragondm has quit IRC | 16:18 | |
| *** apmelton1 has quit IRC | 16:18 | |
| *** lakspace has quit IRC | 16:18 | |
| *** SergeyLukjanov has quit IRC | 16:18 | |
| *** chmouel has joined #openstack-ceilometer | 16:21 | |
| *** litong has joined #openstack-ceilometer | 16:21 | |
| *** lakspace has joined #openstack-ceilometer | 16:21 | |
| *** apmelton1 has joined #openstack-ceilometer | 16:21 | |
| *** dragondm has joined #openstack-ceilometer | 16:21 | |
| *** sandywalsh_ has joined #openstack-ceilometer | 16:26 | |
| *** sandywalsh has quit IRC | 16:27 | |
| *** terriyu has joined #openstack-ceilometer | 16:32 | |
| *** terriyu has quit IRC | 16:32 | |
| *** thomasem has quit IRC | 16:37 | |
| *** sandywalsh_ has quit IRC | 16:38 | |
| *** sandywalsh_ has joined #openstack-ceilometer | 16:39 | |
| *** litong has quit IRC | 16:49 | |
| *** thomasem has joined #openstack-ceilometer | 16:58 | |
| *** tongli has joined #openstack-ceilometer | 17:11 | |
| *** sayali has joined #openstack-ceilometer | 17:16 | |
| *** margol has joined #openstack-ceilometer | 17:22 | |
| *** margol has quit IRC | 17:26 | |
| *** vrovachev has left #openstack-ceilometer | 17:34 | |
| *** Alexei_987 has quit IRC | 17:42 | |
| *** Alexei_987 has joined #openstack-ceilometer | 17:43 | |
| *** sayali has quit IRC | 17:51 | |
| *** ityaptin_ has quit IRC | 17:53 | |
| *** ityaptin_ has joined #openstack-ceilometer | 17:53 | |
| *** SergeyLukjanov has joined #openstack-ceilometer | 17:54 | |
| *** sayali has joined #openstack-ceilometer | 17:59 | |
| *** eglynn_ has quit IRC | 18:04 | |
| *** SergeyLukjanov has quit IRC | 18:10 | |
| *** absubram_ has joined #openstack-ceilometer | 18:11 | |
| *** SergeyLukjanov has joined #openstack-ceilometer | 18:12 | |
| openstackgerrit | Mehdi Abaakouk proposed a change to openstack/ceilometer: Convert event timestamp to PrecisionTimestamp https://review.openstack.org/62435 | 18:13 |
| *** jdob has quit IRC | 18:25 | |
| *** gerahel has joined #openstack-ceilometer | 18:26 | |
| *** jdob has joined #openstack-ceilometer | 18:26 | |
| *** insanidade has joined #openstack-ceilometer | 18:29 | |
| *** gerahel has quit IRC | 18:30 | |
| *** eglynn_ has joined #openstack-ceilometer | 18:37 | |
| *** mldmail has joined #openstack-ceilometer | 18:47 | |
| *** mldmail has quit IRC | 18:49 | |
| *** sayali has quit IRC | 18:50 | |
| *** sayali has joined #openstack-ceilometer | 18:53 | |
| *** sayali_ has joined #openstack-ceilometer | 18:53 | |
| *** sayali_ has quit IRC | 18:53 | |
| *** carfighter has joined #openstack-ceilometer | 18:53 | |
| *** carfighter has quit IRC | 18:59 | |
| *** Alexei_987 has quit IRC | 19:01 | |
| *** insanidade has quit IRC | 19:03 | |
| *** insanidade has joined #openstack-ceilometer | 19:04 | |
| openstackgerrit | Cyril Roelandt proposed a change to openstack/ceilometer: Add a wadl target to the documentation https://review.openstack.org/57574 | 19:39 |
| *** Alexei_987 has joined #openstack-ceilometer | 20:06 | |
| openstackgerrit | A change was merged to stackforge/pycadf: sync requirements and oslo https://review.openstack.org/60693 | 20:09 |
| *** eglynn_ has quit IRC | 20:15 | |
| *** eglynn_ has joined #openstack-ceilometer | 20:29 | |
| openstackgerrit | Julien Danjou proposed a change to openstack/ceilometer: Run unit tests against MySQL (optionaly) https://review.openstack.org/59489 | 20:32 |
| *** sandywalsh_ has quit IRC | 20:40 | |
| *** sandywalsh_ has joined #openstack-ceilometer | 20:54 | |
| *** openstackgerrit has quit IRC | 21:08 | |
| *** openstackgerrit has joined #openstack-ceilometer | 21:08 | |
| *** SergeyLukjanov has quit IRC | 21:35 | |
| *** SergeyLukjanov has joined #openstack-ceilometer | 21:38 | |
| *** jdob has quit IRC | 21:38 | |
| *** Alexei_987 has quit IRC | 21:39 | |
| *** jdob has joined #openstack-ceilometer | 21:39 | |
| *** Alexei_987 has joined #openstack-ceilometer | 21:40 | |
| *** SergeyLukjanov_ has joined #openstack-ceilometer | 21:42 | |
| *** Alexei_987 has quit IRC | 21:42 | |
| *** SergeyLukjanov is now known as SergeyLukjanov_a | 21:42 | |
| *** SergeyLukjanov_a has quit IRC | 21:43 | |
| *** Alexei_987 has joined #openstack-ceilometer | 21:44 | |
| *** SergeyLukjanov_ has quit IRC | 21:57 | |
| *** SergeyLukjanov has joined #openstack-ceilometer | 21:57 | |
| *** sandywalsh_ has quit IRC | 22:02 | |
| *** SergeyLukjanov has quit IRC | 22:04 | |
| *** jdob has quit IRC | 22:06 | |
| *** eglynn_ has quit IRC | 22:15 | |
| *** sandywalsh_ has joined #openstack-ceilometer | 22:18 | |
| *** eglynn_ has joined #openstack-ceilometer | 22:26 | |
| openstackgerrit | Mehdi Abaakouk proposed a change to openstack/ceilometer: Convert event timestamp to PrecisionTimestamp https://review.openstack.org/62435 | 22:27 |
| *** thomasem has quit IRC | 22:36 | |
| *** gordc has quit IRC | 22:52 | |
| *** tongli has quit IRC | 23:32 | |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!