*** k_mouza has joined #openstack-monasca | 01:02 | |
*** k_mouza has quit IRC | 01:10 | |
*** viks____ has joined #openstack-monasca | 02:25 | |
*** k_mouza has joined #openstack-monasca | 03:11 | |
*** k_mouza has quit IRC | 03:16 | |
*** k_mouza has joined #openstack-monasca | 06:11 | |
*** k_mouza has quit IRC | 06:16 | |
openstackgerrit | Michał Piotrowski proposed openstack/monasca-kibana-plugin master: [WiP] Adding .zuul job for building plugin https://review.opendev.org/725200 | 06:46 |
---|---|---|
openstackgerrit | Michał Piotrowski proposed openstack/monasca-kibana-plugin master: [WiP] Adding .zuul job for building plugin https://review.opendev.org/725200 | 07:23 |
*** witek_ has joined #openstack-monasca | 08:03 | |
openstackgerrit | Martin Chacon Piza proposed openstack/monasca-log-api master: Migrate from ujson to simplejson https://review.opendev.org/727119 | 09:03 |
openstackgerrit | Martin Chacon Piza proposed openstack/monasca-log-api master: Migrate from ujson to simplejson https://review.opendev.org/727119 | 09:07 |
openstackgerrit | Martin Chacon Piza proposed openstack/monasca-log-api master: Migrate from ujson to simplejson https://review.opendev.org/724658 | 09:10 |
*** k_mouza has joined #openstack-monasca | 09:21 | |
*** k_mouza has quit IRC | 09:42 | |
*** k_mouza has joined #openstack-monasca | 09:47 | |
*** adriancz has joined #openstack-monasca | 09:50 | |
openstackgerrit | Martin Chacon Piza proposed openstack/monasca-log-api master: Migrate from ujson to simplejson https://review.opendev.org/727119 | 09:54 |
*** vishalmanchanda has quit IRC | 12:07 | |
*** vishalmanchanda has joined #openstack-monasca | 12:41 | |
*** elod_pto is now known as elod | 12:42 | |
chaconpiza | Courtesy Monasca meeting reminder in #openstack-monasca: witek, jayahn,iurygregory,ezpz,igorn,haad,sc,joadavis, akiraY,tobiajo,dougsz,fouadben, amofakhar, haru5ny (haruki),kaiokmo,pandiyan,guilhermesp,chaconpiza,hosanai,Wasaac,brtknr,bandorf,witek_ | 12:51 |
chaconpiza | #startmeeting monasca | 13:00 |
openstack | Meeting started Tue May 12 13:00:05 2020 UTC and is due to finish in 60 minutes. The chair is chaconpiza. Information about MeetBot at http://wiki.debian.org/MeetBot. | 13:00 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 13:00 |
*** openstack changes topic to " (Meeting topic: monasca)" | 13:00 | |
openstack | The meeting name has been set to 'monasca' | 13:00 |
chaconpiza | Hello everyone | 13:00 |
piotrowskim | hi | 13:00 |
witek_ | hi | 13:00 |
adriancz | hello | 13:00 |
chaconpiza | Hi Michal, Adrian and Witek | 13:00 |
chaconpiza | The agenda as usual https://etherpad.opendev.org/p/monasca-team-meeting-agenda | 13:00 |
chaconpiza | Let's start | 13:01 |
chaconpiza | #topic Follow-up on influxdb=5.3.0 | 13:01 |
*** openstack changes topic to "Follow-up on influxdb=5.3.0 (Meeting topic: monasca)" | 13:01 | |
chaconpiza | It seems that the version 5.3.0 of influxdb-python-client isn't able to handle requests with long output. | 13:02 |
chaconpiza | A simple call like 'SHOW DIAGNOSTICS' raises an exception. | 13:02 |
chaconpiza | https://github.com/influxdata/influxdb-python/issues/820 | 13:02 |
witek_ | what about actual measurement queries? | 13:02 |
chaconpiza | I workarounded the call of SHOW DIAGNOSTICS, then Tempest test fails in 5 test cases. | 13:03 |
chaconpiza | https://zuul.opendev.org/t/openstack/build/5f8c3bcaa971462f80c0097267c0dbe9/log/job-output.txt | 13:04 |
witek_ | https://review.opendev.org/725779 | 13:04 |
chaconpiza | I sent a change to openstack/requirements for block that version. https://review.opendev.org/#/c/725824/ | 13:05 |
witek_ | but the client isn't throwing any exception for these tests, is it? | 13:06 |
chaconpiza | I didn't go deep for other calls | 13:07 |
witek_ | I think it's good we blocked this version, as apparently there are some problems with it | 13:09 |
witek_ | but we may need to look closer at these failing tests | 13:09 |
chaconpiza | and let's keep track on the open bug in https://github.com/influxdata/influxdb-python/issues/820 | 13:09 |
witek_ | +1 | 13:09 |
chaconpiza | alright, then we notice that: | 13:10 |
chaconpiza | #topic Define minimum versions for InfluxDB and Influxdb-python-client | 13:10 |
*** openstack changes topic to "Define minimum versions for InfluxDB and Influxdb-python-client (Meeting topic: monasca)" | 13:10 | |
chaconpiza | In monasca_api/common/repositories/influxdb/metrics_repository.py | 13:11 |
chaconpiza | The code handles InfluxDB version older than 0.11.0 and newer with different methods. | 13:11 |
chaconpiza | InfluxDB 0.11.0 is quite old. | 13:11 |
chaconpiza | As well, the code don't use the new methods from influxdb-python-client. | 13:12 |
chaconpiza | For example, in order to get the version of InfluxDB it queries 'SHOW DIAGNOSTICS' and parses the output. | 13:12 |
chaconpiza | since version 5.0.0 of influxdb-python-client there is present a method that returns the version. | 13:13 |
chaconpiza | https://github.com/influxdata/influxdb-python/blob/master/CHANGELOG.md#v500---2017-11-20 | 13:13 |
chaconpiza | I would like to propose: | 13:13 |
chaconpiza | 1. Set InfluxDB 0.11.0 as the oldest supported. | 13:14 |
chaconpiza | 2. Set influxdb-python-client 5.0.0 as the minimum version | 13:14 |
chaconpiza | 3. refactor the code monasca_api/common/repositories/influxdb/metrics_repository.py | 13:15 |
chaconpiza | what do you think piotrowskim, witek_ and adriancz? | 13:15 |
witek_ | fully agree on 1 | 13:15 |
witek_ | for 2 and 3, I'm not sure if we need to check the version at all, but indeed could be useful in future | 13:16 |
piotrowskim | 1, unless we have time for 3 | 13:16 |
chaconpiza | The refactor is not difficult, is more like cut-here, trimm-there and prunning-over-there | 13:17 |
chaconpiza | let's keep track on this topic in this change https://review.opendev.org/#/c/725824/ I will set a new patch set | 13:19 |
adriancz | agree with pireowskim | 13:19 |
witek_ | chaconpiza: will you be working on this? | 13:19 |
chaconpiza | yes | 13:19 |
chaconpiza | let's move forward to the next topic | 13:20 |
witek_ | I'm OK with the approach | 13:20 |
chaconpiza | #topic Adding project-template for nodejs10 | 13:20 |
*** openstack changes topic to "Adding project-template for nodejs10 (Meeting topic: monasca)" | 13:20 | |
chaconpiza | piotrkowskim, could you please give us a brief context? | 13:21 |
piotrowskim | ok, so as Arseni updated monasca-kibana-plugin and now it needs node in version 10, I belive we should check lint etc. for proper version | 13:21 |
piotrowskim | before it was version 4 | 13:21 |
witek_ | +1 | 13:21 |
piotrowskim | right now, tests for monasca-kibana-plugin are switch off, it good to have working tests for project | 13:22 |
chaconpiza | Besides of the lint, do the unit test of monasca-kibana-plugin need a refactor ? | 13:23 |
chaconpiza | Are there in the new monasca-kibana-plugin unit test ? | 13:24 |
chaconpiza | *tests | 13:24 |
piotrowskim | i belive yes, cause a lot of changed in plugin itself | 13:24 |
chaconpiza | https://github.com/openstack/monasca-kibana-plugin/tree/master/server/__tests__ | 13:25 |
chaconpiza | I am not sure if these unittest are compatible with the new monasca-kibana-plugin | 13:26 |
chaconpiza | piotrowskim could you take a look? | 13:26 |
piotrowskim | probably not, also I think is good to have much more information in README, for example how to run tests etc.. I am not familiar with NodeJS at all so it is more time consuming | 13:27 |
piotrowskim | yeah i will look at it | 13:27 |
chaconpiza | thanks | 13:28 |
chaconpiza | #topic Migrate from ujson to simplejson | 13:28 |
*** openstack changes topic to "Migrate from ujson to simplejson (Meeting topic: monasca)" | 13:28 | |
chaconpiza | I propose two options to handle the migration of ujson in onasca-log-api | 13:29 |
witek_ | I think going with https://review.opendev.org/727119 is safer | 13:30 |
chaconpiza | In the first option I set the newest version of monasca-common in lower-constraints, since monasca-common has already the change ujson to simplejson | 13:30 |
witek_ | as we decouple from new version of monasca-common | 13:30 |
witek_ | and we aim to support train in monasca-log-api | 13:31 |
chaconpiza | As Witek just mention, the second option doesnt touch monasca-common, but instead copies the code from monasca-common into monasca-log-api | 13:31 |
chaconpiza | Ok, lets go for https://review.opendev.org/727119 | 13:32 |
witek_ | adriancz: opinion? | 13:33 |
adriancz | agree with Witek | 13:33 |
chaconpiza | adriancz, you would need to rebase on this one https://review.opendev.org/727119 | 13:33 |
witek_ | nice, so we know how to proceed here | 13:34 |
chaconpiza | it is a little bit more work for you, but safer as witek_ mentioned | 13:34 |
chaconpiza | +1 | 13:34 |
chaconpiza | I will then abandon the other change and set a -1 workflow | 13:34 |
adriancz | monasca-log-api is deprecated so we should go with safer option | 13:34 |
chaconpiza | +! | 13:35 |
adriancz | and we should not invest to much time | 13:35 |
chaconpiza | Ok, we have an agreement. | 13:36 |
chaconpiza | #topic AOB | 13:36 |
*** openstack changes topic to "AOB (Meeting topic: monasca)" | 13:36 | |
chaconpiza | Is there any other topic you would like to disscus today? | 13:37 |
witek_ | I'd like to start working on Contributor Documentation goal this week | 13:37 |
witek_ | https://governance.openstack.org/tc/goals/selected/ussuri/project-ptl-and-contrib-docs.html | 13:37 |
chaconpiza | Speaking about documentation... | 13:39 |
chaconpiza | https://review.opendev.org/#/c/722666/ | 13:39 |
chaconpiza | The change that modifies the code is merged and cherry-picked until stable/pike | 13:39 |
chaconpiza | it is from Keith | 13:40 |
witek_ | right, I've helped on this a little in the last days | 13:40 |
chaconpiza | It looks good to me, lets then merge and cherry-pick until pike as well | 13:40 |
witek_ | my change is documentation only, so I think we don't need to cherry-pick | 13:41 |
chaconpiza | the documentation isn't handle by releases? | 13:41 |
witek_ | let me look it up | 13:42 |
witek_ | https://docs.openstack.org/project-team-guide/stable-branches.html#review-guidelines | 13:43 |
chaconpiza | KeithMnemonic are you around? | 13:43 |
witek_ | don't see anything about docs | 13:43 |
chaconpiza | Ok, thanks for the guidelines | 13:44 |
witek_ | we can cherry-pick, doesn't hurt after all | 13:44 |
chaconpiza | +1 | 13:44 |
chaconpiza | All right. These were all topics in the agenda for today. | 13:45 |
witek_ | nothing else from my side | 13:46 |
chaconpiza | Thanks for coming and let's gather next week. Goodbye. | 13:46 |
witek_ | thanks chaconpiza | 13:46 |
witek_ | thanks everyone | 13:46 |
witek_ | and bye | 13:46 |
piotrowskim | bye | 13:47 |
adriancz | thanks bye | 13:47 |
chaconpiza | #endmeeting | 13:47 |
*** openstack changes topic to "OpenStack Monitoring as a Service | https://wiki.openstack.org/wiki/Monasca" | 13:47 | |
openstack | Meeting ended Tue May 12 13:47:20 2020 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 13:47 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/monasca/2020/monasca.2020-05-12-13.00.html | 13:47 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/monasca/2020/monasca.2020-05-12-13.00.txt | 13:47 |
openstack | Log: http://eavesdrop.openstack.org/meetings/monasca/2020/monasca.2020-05-12-13.00.log.html | 13:47 |
witek_ | piotrowskim: you can add Depends-On tag in the commit message to include new job definitions in your change | 13:49 |
witek_ | like here: https://review.opendev.org/726747 | 13:49 |
*** openstackstatus has quit IRC | 13:53 | |
*** openstackstatus has joined #openstack-monasca | 13:54 | |
*** ChanServ sets mode: +v openstackstatus | 13:54 | |
witek_ | piotrowskim: the new template just merged | 14:05 |
piotrowskim | great | 14:14 |
openstackgerrit | Michał Piotrowski proposed openstack/monasca-kibana-plugin master: [WiP] Adding .zuul job for building plugin https://review.opendev.org/725200 | 14:18 |
KeithMnemonic | chaconpiza i am now | 14:37 |
chaconpiza | KeithMnemonic hi, as you see in the weekly monasca meeting logs we disscused about merging https://review.opendev.org/#/c/722666/ and cherry pick it backwards. | 14:43 |
KeithMnemonic | ok thanks for the update | 14:44 |
*** witek_ has quit IRC | 16:18 | |
*** vishalmanchanda has quit IRC | 16:57 | |
*** viks____ has quit IRC | 17:43 | |
*** vishalmanchanda has joined #openstack-monasca | 18:04 | |
*** k_mouza has quit IRC | 19:44 | |
*** k_mouza has joined #openstack-monasca | 19:51 | |
*** k_mouza has quit IRC | 20:20 | |
*** k_mouza has joined #openstack-monasca | 20:35 | |
*** vishalmanchanda has quit IRC | 20:37 | |
*** k_mouza has quit IRC | 20:59 | |
*** k_mouza has joined #openstack-monasca | 21:00 | |
*** k_mouza has quit IRC | 21:25 | |
*** k_mouza has joined #openstack-monasca | 21:28 | |
*** k_mouza has quit IRC | 21:50 | |
*** k_mouza has joined #openstack-monasca | 21:57 | |
*** k_mouza has quit IRC | 22:21 | |
*** k_mouza has joined #openstack-monasca | 22:22 | |
*** k_mouza has quit IRC | 22:35 | |
*** k_mouza has joined #openstack-monasca | 22:35 | |
*** k_mouza has quit IRC | 22:45 | |
*** k_mouza has joined #openstack-monasca | 22:50 | |
*** k_mouza has quit IRC | 23:47 | |
*** k_mouza has joined #openstack-monasca | 23:50 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!