*** dave-mcc_ has joined #openstack-telemetry | 00:08 | |
*** dave-mccowan has quit IRC | 00:10 | |
*** dave-mcc_ has quit IRC | 00:13 | |
*** hfu has joined #openstack-telemetry | 00:24 | |
*** dave-mccowan has joined #openstack-telemetry | 00:40 | |
*** donghao has joined #openstack-telemetry | 00:40 | |
*** thorst has joined #openstack-telemetry | 00:41 | |
*** thorst has quit IRC | 00:45 | |
*** thorst has joined #openstack-telemetry | 00:46 | |
*** thorst has quit IRC | 00:46 | |
*** donghao has quit IRC | 00:46 | |
*** dave-mccowan has quit IRC | 00:51 | |
*** hfu has quit IRC | 00:56 | |
*** liusheng has quit IRC | 01:10 | |
*** liusheng has joined #openstack-telemetry | 01:18 | |
*** hfu has joined #openstack-telemetry | 01:31 | |
*** liusheng has quit IRC | 01:54 | |
*** lhx__ has joined #openstack-telemetry | 01:59 | |
*** liusheng has joined #openstack-telemetry | 02:12 | |
*** stevemar has quit IRC | 02:21 | |
*** stevemar has joined #openstack-telemetry | 02:21 | |
*** links has joined #openstack-telemetry | 02:25 | |
*** hfu has quit IRC | 02:28 | |
*** hfu has joined #openstack-telemetry | 02:36 | |
*** links has quit IRC | 02:38 | |
*** hfu has quit IRC | 02:38 | |
*** links has joined #openstack-telemetry | 02:46 | |
*** thorst has joined #openstack-telemetry | 02:47 | |
*** thorst has quit IRC | 02:52 | |
*** dave-mccowan has joined #openstack-telemetry | 03:02 | |
*** dave-mccowan has quit IRC | 03:06 | |
*** tlian has quit IRC | 03:13 | |
*** thorst has joined #openstack-telemetry | 03:14 | |
*** thorst has quit IRC | 03:14 | |
*** dave-mccowan has joined #openstack-telemetry | 03:31 | |
openstackgerrit | Cao Xuan Hoang proposed openstack/ceilometer: Add Apache 2.0 license to source file https://review.openstack.org/420485 | 03:36 |
---|---|---|
*** dave-mccowan has quit IRC | 03:45 | |
*** sudipto_ has joined #openstack-telemetry | 03:50 | |
*** sudipto has joined #openstack-telemetry | 03:50 | |
*** r-mibu has quit IRC | 03:58 | |
*** r-mibu has joined #openstack-telemetry | 04:03 | |
*** donghao has joined #openstack-telemetry | 04:18 | |
*** donghao has quit IRC | 04:22 | |
*** hfu has joined #openstack-telemetry | 04:34 | |
*** julian1 has quit IRC | 04:41 | |
*** sudipto_ has quit IRC | 05:01 | |
*** sudipto has quit IRC | 05:01 | |
*** dschultz has quit IRC | 05:15 | |
*** thorst has joined #openstack-telemetry | 05:15 | |
*** dschultz has joined #openstack-telemetry | 05:16 | |
*** dschultz has quit IRC | 05:16 | |
*** dschultz has joined #openstack-telemetry | 05:16 | |
*** lhx__ has quit IRC | 05:19 | |
*** thorst has quit IRC | 05:20 | |
*** sudipto has joined #openstack-telemetry | 05:36 | |
*** sudipto_ has joined #openstack-telemetry | 05:36 | |
*** Jack_Iv has joined #openstack-telemetry | 06:00 | |
*** ljxiash has joined #openstack-telemetry | 06:02 | |
*** liamji has joined #openstack-telemetry | 06:05 | |
*** Jack_Iv has quit IRC | 06:12 | |
openstackgerrit | Nam Nguyen Hoai proposed openstack/ceilometer: Replaces uuid.uuid4 with uuidutils.generate_uuid() https://review.openstack.org/420521 | 06:51 |
*** afazekas has quit IRC | 06:53 | |
*** yprokule has joined #openstack-telemetry | 06:55 | |
*** afazekas has joined #openstack-telemetry | 06:57 | |
*** liamji has quit IRC | 06:58 | |
*** lhx__ has joined #openstack-telemetry | 06:58 | |
*** afazekas has quit IRC | 07:02 | |
*** afazekas has joined #openstack-telemetry | 07:13 | |
*** thorst has joined #openstack-telemetry | 07:16 | |
*** thorst has quit IRC | 07:21 | |
*** tesseract has joined #openstack-telemetry | 07:21 | |
*** pcaruana has joined #openstack-telemetry | 07:34 | |
lhx__ | sileht, online? | 07:35 |
sileht | lhx__, hi | 07:36 |
lhx__ | sileht, well, I have some questions | 07:38 |
lhx__ | https://review.openstack.org/#/c/412309/ | 07:38 |
lhx__ | all pipeline and event_pipeline yaml files should be move a new directory? | 07:38 |
lhx__ | Do I just load the definitions from those yamls like meters.yaml? | 07:38 |
lhx__ | it means I should implement definitions loading in newly pipeline.py under the new directory | 07:38 |
sileht | lhx__, yes yaml should move, and pipeline.py should load the one in /etc if present, if not fallback to the one in the new directory | 07:39 |
sileht | lhx__, to load file located into the code tree, you should use pkg_resources like this: https://github.com/openstack/ceilometer/blob/master/ceilometer/meter/notifications.py#L183 | 07:41 |
lhx__ | sileht, I don't get you. if yamls moved, I think pipeline.py should n't load the one in /etc. how can the files are present in /etc? | 07:45 |
sileht | lhx__, the goal behind is to have a working ceilometer setup with an empty /etc, but if the user want to customise the configuration of ceilometer it must copy the file from /usr/share/ceilometer/... to /etc/ and customise it | 07:46 |
lhx__ | sileht, I get this point. so just use pkg_resources in pipeline.py? | 07:50 |
lhx__ | sileht, just not sure if we need another pipeline.py | 07:51 |
sileht | lhx__, here: https://github.com/openstack/ceilometer/blob/master/ceilometer/pipeline.py#L636 | 07:52 |
sileht | lhx__, when cfg_info is still empty, use pkg_resources | 07:52 |
lhx__ | sileht, aha, thanks very much, dear sileht :) | 07:54 |
sileht | lhx__, your welcome | 07:54 |
*** donghao has joined #openstack-telemetry | 07:54 | |
*** donghao has quit IRC | 07:58 | |
*** adriant has quit IRC | 08:03 | |
*** zhurong has joined #openstack-telemetry | 08:05 | |
*** nadya has joined #openstack-telemetry | 08:09 | |
*** shardy has joined #openstack-telemetry | 08:24 | |
*** thorst has joined #openstack-telemetry | 09:17 | |
openstackgerrit | Hanxi Liu proposed openstack/ceilometer: publisher: fix pipeline confusing reference https://review.openstack.org/420597 | 09:18 |
openstackgerrit | Hanxi Liu proposed openstack/ceilometer: Ship YAML file to /usr/share https://review.openstack.org/412309 | 09:22 |
*** thorst has quit IRC | 09:22 | |
*** yassine has joined #openstack-telemetry | 09:32 | |
*** yassine is now known as Guest7011 | 09:32 | |
*** zhurong has quit IRC | 09:37 | |
*** yprokule has quit IRC | 09:38 | |
*** nadya has quit IRC | 09:56 | |
*** hfu has quit IRC | 10:08 | |
*** zhurong has joined #openstack-telemetry | 10:08 | |
*** lhx__ has quit IRC | 10:09 | |
*** lhx__ has joined #openstack-telemetry | 10:12 | |
*** lhx__ has quit IRC | 10:37 | |
*** Guest7011 has quit IRC | 10:37 | |
*** nadya has joined #openstack-telemetry | 10:40 | |
*** yprokule has joined #openstack-telemetry | 10:42 | |
*** Guest7011 has joined #openstack-telemetry | 10:45 | |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: pipeline: remove tests helper from runtime code https://review.openstack.org/420636 | 10:48 |
*** lhx__ has joined #openstack-telemetry | 10:51 | |
*** cdent has joined #openstack-telemetry | 10:55 | |
*** ljxiash has quit IRC | 11:09 | |
*** ljxiash has joined #openstack-telemetry | 11:10 | |
*** ljxiash has quit IRC | 11:14 | |
*** sudipto has quit IRC | 11:17 | |
*** sudipto_ has quit IRC | 11:17 | |
*** thorst has joined #openstack-telemetry | 11:18 | |
*** Jack_Iv has joined #openstack-telemetry | 11:22 | |
*** thorst has quit IRC | 11:23 | |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: pipeline: remove tests helper from runtime code https://review.openstack.org/420636 | 11:25 |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: Allow to configure the default publisher https://review.openstack.org/420655 | 11:25 |
*** fgemein has joined #openstack-telemetry | 11:25 | |
*** fgemein has left #openstack-telemetry | 11:26 | |
*** donghao has joined #openstack-telemetry | 11:30 | |
*** donghao has quit IRC | 11:35 | |
*** fgemein has joined #openstack-telemetry | 11:38 | |
* fgemein Hi there | 11:38 | |
sileht | / | 11:45 |
*** lhx__ has quit IRC | 11:48 | |
fgemein | I'ld like to ask a question , if nobody minds: I've experienced problems with my ceilometer liberty installation when running on a ubuntu xenial server. | 11:59 |
fgemein | the ceilometer-agent-central is running into encoding trouble when polling certain meters | 12:00 |
fgemein | "UnicodeEncodeError: 'ascii' codec can't encode character u'\xfc' in position 26: ordinal not in range(128)" | 12:01 |
*** Jack_Iv has quit IRC | 12:03 | |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: Don't load many times the same publisher https://review.openstack.org/420655 | 12:03 |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: Allow to configure the default publisher https://review.openstack.org/420681 | 12:03 |
fgemein | I know this from python and adding "# -*- coding: utf-8 -*-" usually is sufficient to solve this. Did anyone have the same problems | 12:04 |
*** ljxiash has joined #openstack-telemetry | 12:05 | |
*** sudipto has joined #openstack-telemetry | 12:31 | |
*** sudipto_ has joined #openstack-telemetry | 12:31 | |
*** leitan has joined #openstack-telemetry | 12:34 | |
*** sudipto_ has quit IRC | 12:37 | |
*** sudipto has quit IRC | 12:37 | |
*** khushbu_ has joined #openstack-telemetry | 12:37 | |
*** sudipto has joined #openstack-telemetry | 12:40 | |
*** sudipto_ has joined #openstack-telemetry | 12:41 | |
*** thorst has joined #openstack-telemetry | 12:45 | |
openstackgerrit | Merged openstack/ceilometer: publisher: fix pipeline confusing reference https://review.openstack.org/420597 | 12:55 |
*** leitan_ has joined #openstack-telemetry | 12:56 | |
*** leitan has quit IRC | 13:00 | |
*** zhurong has quit IRC | 13:03 | |
*** fgemein has quit IRC | 13:11 | |
*** Guest7011 has quit IRC | 13:13 | |
*** khushbu_ has quit IRC | 13:16 | |
*** gordc has joined #openstack-telemetry | 13:17 | |
openstackgerrit | gordon chung proposed openstack/gnocchi: tests: Fix upgrade script https://review.openstack.org/419564 | 13:18 |
*** Guest7011 has joined #openstack-telemetry | 13:20 | |
*** lhx_ has joined #openstack-telemetry | 13:32 | |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: switch instance_discovery to libvirt_metadata https://review.openstack.org/420719 | 13:33 |
*** lhx__ has joined #openstack-telemetry | 13:37 | |
*** lhx_ has quit IRC | 13:40 | |
*** tlian has joined #openstack-telemetry | 13:55 | |
*** fguillot has joined #openstack-telemetry | 13:55 | |
openstackgerrit | gordon chung proposed openstack/gnocchi: rest: reject / as resource id and metric name https://review.openstack.org/419009 | 13:56 |
gordc | sileht: i don't know if ^ changes ownership. feel free to do something if it does. | 13:57 |
*** leitan_ has quit IRC | 13:57 | |
*** leitan has joined #openstack-telemetry | 13:58 | |
*** fgemein has joined #openstack-telemetry | 13:59 | |
sileht | gordc, I don't care | 13:59 |
gordc | :) | 14:01 |
*** leitan has quit IRC | 14:02 | |
openstackgerrit | Merged openstack/gnocchi: Introduce "basic" authentication mechanism https://review.openstack.org/412387 | 14:06 |
openstackgerrit | Merged openstack/gnocchi: ceph: enhance the documentation https://review.openstack.org/419989 | 14:06 |
*** paw has quit IRC | 14:13 | |
*** dave-mccowan has joined #openstack-telemetry | 14:14 | |
*** pradk has joined #openstack-telemetry | 14:18 | |
*** Guest7011 has quit IRC | 14:28 | |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/gnocchi: mysql: fix timestamp upgrade https://review.openstack.org/419909 | 14:29 |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/gnocchi: rest: reject / as resource id and metric name https://review.openstack.org/419009 | 14:29 |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/gnocchi: tests: Fix upgrade script https://review.openstack.org/419564 | 14:29 |
*** links has quit IRC | 14:30 | |
jd__ | damn I forgot to add "But we'll get a new fancy logo in a few weeks." as a positive ending in my last email | 14:30 |
openstackgerrit | Julien Danjou proposed openstack/gnocchi: opts: list entry points with pkg_resources rather than stevedore https://review.openstack.org/419962 | 14:32 |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: Allow to configure the default publisher https://review.openstack.org/420681 | 14:32 |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: Don't load many times the same publisher https://review.openstack.org/420655 | 14:32 |
openstackgerrit | Mehdi Abaakouk (sileht) proposed openstack/ceilometer: pipeline: remove tests helper from runtime code https://review.openstack.org/420636 | 14:32 |
gordc | jd__: what email? | 14:36 |
jd__ | gordc: Message-ID: <m0wpdv13j1.fsf@danjou.info> | 14:36 |
jd__ | gordc: on openstack-dev :) | 14:36 |
gordc | jd__: lol project-navigator | 14:37 |
*** donghao has joined #openstack-telemetry | 14:42 | |
*** Guest7011 has joined #openstack-telemetry | 14:42 | |
*** nadya has quit IRC | 14:48 | |
gordc | sileht: re: http://lists.openstack.org/pipermail/openstack-dev/2016-November/107284.html | 14:50 |
sileht | gordc, do you find an idea | 14:51 |
gordc | if we store across multiple omap keys, in single object. do you know if ceph locks the enitre object or just the key? | 14:51 |
sileht | ? | 14:51 |
sileht | gordc, I don't known | 14:51 |
gordc | don't have an idea yet. but i have this patch https://review.openstack.org/#/c/398574/ | 14:51 |
gordc | and i don't know if it's very useful. alhtough i guess it will still need to be done regardless | 14:52 |
gordc | i'll try to dig into how omaps get locked in ceph | 14:52 |
sileht | gordc, It's better to store thing accross many objects when possible. | 14:55 |
sileht | gordc, having one object means you will read the data only from one OSDs | 14:55 |
gordc | sileht: i see. i was thinking because omaps used rocksdb or whatever it is, it was a different thing | 14:56 |
gordc | i guess it needs to go to object first before it can go to rocksdb | 14:56 |
sileht | gordc, each object have a rocksdb associated | 14:57 |
*** paw has joined #openstack-telemetry | 14:57 | |
gordc | ooohhh. i thought it was more global. | 14:57 |
gordc | good to know. | 14:57 |
sileht | gordc, maybe I'm wrong it's perhaps one per OSDs | 15:01 |
gordc | *shrugs* i've no idea.lol | 15:03 |
gordc | sileht, jd__: i think there's a problem. upgrade gate shows http://logs.openstack.org/09/419009/12/check/gate-gnocchi-tox-db-py27-mysql-ceph-upgrade-from-3.0-ubuntu-xenial/4917569/console.html#_2017-01-16_14_41_18_716330 | 15:16 |
gordc | but our code says, it's not possible: https://github.com/openstack/gnocchi/blob/8ff278e9a87038121bb21b12a2ef1770f268ea57/gnocchi/storage/_carbonara.py#L360-L366 | 15:16 |
* sileht passes | 15:18 | |
gordc | lol | 15:19 |
gordc | actually, it might actually make sense. just bad log | 15:29 |
*** cdent_ has joined #openstack-telemetry | 15:31 | |
*** cdent has quit IRC | 15:31 | |
*** cdent_ is now known as cdent | 15:31 | |
*** lhx__ is now known as lhx_ | 15:34 | |
*** cdent has quit IRC | 15:36 | |
*** cdent_ has joined #openstack-telemetry | 15:37 | |
*** cdent_ has quit IRC | 15:42 | |
openstackgerrit | gordon chung proposed openstack/gnocchi: fix upgrade https://review.openstack.org/420776 | 15:48 |
*** dave-mccowan has quit IRC | 15:50 | |
*** cdent has joined #openstack-telemetry | 15:50 | |
gordc | hmmm... is there a default metric when gnocchi is installed? the upgrade gate seems to have 4 metrics even though the test only puts in 3. | 15:51 |
*** nadya has joined #openstack-telemetry | 15:59 | |
*** cdent has quit IRC | 16:00 | |
*** nadya has quit IRC | 16:01 | |
openstackgerrit | gordon chung proposed openstack/gnocchi: DNM: testing https://review.openstack.org/420786 | 16:03 |
*** dave-mccowan has joined #openstack-telemetry | 16:05 | |
*** dave-mcc_ has joined #openstack-telemetry | 16:08 | |
*** cdent has joined #openstack-telemetry | 16:08 | |
*** dave-mccowan has quit IRC | 16:10 | |
*** nadya has joined #openstack-telemetry | 16:10 | |
sileht | gordc, pifpaf starts gnocchi-statsd that creates a resource on startup where it attachs all metrics it received | 16:18 |
gordc | sileht: ah i see.. that makes sense | 16:21 |
openstackgerrit | Julien Danjou proposed openstack/gnocchi: storage: add more debug information to trace behaviour https://review.openstack.org/419532 | 16:39 |
openstackgerrit | Hanxi Liu proposed openstack/ceilometer: Ship YAML file to /usr/share https://review.openstack.org/412309 | 16:53 |
openstackgerrit | Hanxi Liu proposed openstack/ceilometer: Ship YAML file to /usr/share https://review.openstack.org/412309 | 16:57 |
*** dave-mcc_ has quit IRC | 17:06 | |
*** fgemein has quit IRC | 17:07 | |
lhx_ | gordc, sileht, should we just do deprecating for collector? | 17:11 |
*** lhx_ has quit IRC | 17:12 | |
*** lhx_ has joined #openstack-telemetry | 17:13 | |
lhx_ | oh, the network sometimes breaks down | 17:14 |
gordc | lhx_: i think we can add warning to collector | 17:14 |
lhx_ | gordc, I mean shouldn't remove it but deprecate | 17:16 |
*** yprokule has quit IRC | 17:18 | |
gordc | lhx_: right | 17:19 |
lhx_ | gordc, you know I don't want to remove it aggressively | 17:19 |
gordc | lhx_: right, just deprecate it with warning and releasenote | 17:20 |
lhx_ | gordc, ok, thx :) | 17:21 |
*** sudipto has quit IRC | 17:27 | |
*** sudipto_ has quit IRC | 17:27 | |
*** tesseract has quit IRC | 17:29 | |
*** lhx_ has quit IRC | 17:32 | |
gordc | did we require any aggregated metric migration from v3.0 to v3.1? | 17:39 |
openstackgerrit | Merged openstack/aodh: Enable healthcheck app to check API status https://review.openstack.org/412111 | 17:54 |
openstackgerrit | gordon chung proposed openstack/gnocchi: cleanup upgrade failures https://review.openstack.org/420776 | 17:57 |
*** ljxiash has quit IRC | 17:59 | |
*** ljxiash has joined #openstack-telemetry | 18:00 | |
*** swamireddy has quit IRC | 18:05 | |
openstackgerrit | gordon chung proposed openstack/aodh: enable cachetools for gnocchi alarms https://review.openstack.org/419628 | 18:11 |
openstackgerrit | gordon chung proposed openstack/aodh: enable cachetools for gnocchi alarms https://review.openstack.org/419628 | 18:13 |
openstackgerrit | Julien Danjou proposed openstack/python-gnocchiclient: Really fix basic auth header encoding https://review.openstack.org/420898 | 18:13 |
jd__ | have fun ^^^^: | 18:13 |
jd__ | :p | 18:14 |
*** nadya has quit IRC | 18:17 | |
*** swamireddy has joined #openstack-telemetry | 18:17 | |
*** nadya has joined #openstack-telemetry | 18:20 | |
openstackgerrit | gordon chung proposed openstack/aodh: enable cachetools for gnocchi alarms https://review.openstack.org/419628 | 18:20 |
*** shardy has quit IRC | 18:24 | |
*** g3ek has quit IRC | 18:33 | |
*** nadya has quit IRC | 18:35 | |
*** g3ek has joined #openstack-telemetry | 18:42 | |
openstackgerrit | Merged openstack/ceilometer: switch instance_discovery to libvirt_metadata https://review.openstack.org/420719 | 18:43 |
*** dave-mccowan has joined #openstack-telemetry | 18:43 | |
*** nadya has joined #openstack-telemetry | 19:00 | |
*** nadya has quit IRC | 19:00 | |
*** nadya has joined #openstack-telemetry | 19:00 | |
*** Jack_Iv has joined #openstack-telemetry | 19:03 | |
*** Jack_Iv has quit IRC | 19:04 | |
*** Jack_Iv has joined #openstack-telemetry | 19:04 | |
*** Jack_Iv has quit IRC | 19:09 | |
*** leitan has joined #openstack-telemetry | 19:22 | |
*** fguillot has quit IRC | 19:38 | |
openstackgerrit | gordon chung proposed openstack/ceilometer: set panko dispatcher if enabled https://review.openstack.org/418505 | 19:38 |
openstackgerrit | gordon chung proposed openstack/ceilometer: Revert "Remove events storage and API" https://review.openstack.org/418480 | 19:38 |
openstackgerrit | gordon chung proposed openstack/ceilometer: check panko during integration test https://review.openstack.org/418586 | 19:39 |
*** jdandrea has joined #openstack-telemetry | 19:39 | |
*** paw has quit IRC | 19:40 | |
jdandrea | Has anyone ever run profilers like vmprof on code that uses cotelydon? I'm not seeing profile info for my local code, only up to the point of the run() call on a given service, but no calls beyond that. Trying to figure out why. | 19:41 |
openstackgerrit | Julien Danjou proposed openstack/python-gnocchiclient: Really fix basic auth header encoding https://review.openstack.org/420898 | 19:46 |
openstackgerrit | Julien Danjou proposed openstack/python-gnocchiclient: Switch to basic auth in functional tests https://review.openstack.org/420916 | 19:46 |
*** nadya has quit IRC | 19:53 | |
gordc | jdandrea: never tried myself. you still seeing really high cpu usage? | 20:11 |
openstackgerrit | Julien Danjou proposed openstack/python-gnocchiclient: Really fix basic auth header encoding https://review.openstack.org/420898 | 20:21 |
openstackgerrit | Julien Danjou proposed openstack/python-gnocchiclient: Switch to basic auth in functional tests https://review.openstack.org/420916 | 20:21 |
openstackgerrit | gordon chung proposed openstack/panko: modernise gabbi usage https://review.openstack.org/420926 | 20:24 |
*** dave-mccowan has quit IRC | 20:34 | |
sileht | jdandrea, the issue have been reported recently, looks like a bug introduced in 1.5 or 1.6 I don't remember | 20:39 |
sileht | jdandrea, it's fixed on master, I will release a new versio soon | 20:39 |
jdandrea | gordc yes, we are still seeing high cpu usage; we want to eliminate our code ... or catch it in the act. ;) | 20:40 |
jdandrea | sileht Thank you! Do you mean the issue related to my profiling question, or something else? | 20:40 |
sileht | jdandrea, yes I think it's related | 20:41 |
jdandrea | (meaning us trying to use vmprof and not seeing anything profiled past the run() call) - ohhhh, it is! ok. | 20:41 |
cdent | gordc: I kinda wann +W that commit message, but then | 20:46 |
cdent | I WOULD BE BREAKING THE RULES | 20:46 |
*** Jack_Iv has joined #openstack-telemetry | 20:46 | |
*** fgemein has joined #openstack-telemetry | 20:46 | |
*** Guest7011 has quit IRC | 20:46 | |
sileht | jdandrea, I have already release the fix in fact in version 1.6.4 | 20:47 |
*** fgemein has quit IRC | 20:48 | |
jdandrea | sileht We are on 1.6.4. :) | 20:48 |
sileht | jdandrea, cpu is still too high ? | 20:49 |
jdandrea | sileht Yes, so we wanted to try profiling to see if there may be an issue in our code. Except when we do that (with vmprof, for instance), or even with cProfiler, we don't see any info beyond the run() call in our services, so we're perplexed. | 20:49 |
sileht | jdandrea, cotyledon mainly use pyton mutiprocessing module, that use os.fork() on linux, that can explain | 20:51 |
openstackgerrit | Merged openstack/ceilometermiddleware: Updated from global requirements https://review.openstack.org/365971 | 20:52 |
*** nadya has joined #openstack-telemetry | 20:54 | |
openstackgerrit | Julien Danjou proposed openstack/python-gnocchiclient: Really fix basic auth header encoding https://review.openstack.org/420898 | 20:55 |
openstackgerrit | Julien Danjou proposed openstack/python-gnocchiclient: Switch to basic auth in functional tests https://review.openstack.org/420916 | 20:55 |
*** nadya has quit IRC | 20:58 | |
jdandrea | sileht Ohhhh. Hmm. I wonder how we profile that code then? :-o | 21:00 |
openstackgerrit | gordon chung proposed openstack/aodh: modernise gabbi usage https://review.openstack.org/420958 | 21:00 |
openstackgerrit | gordon chung proposed openstack/aodh: modernise gabbi usage https://review.openstack.org/420958 | 21:02 |
cdent | gordc: are you targeting 1.7.0 as a min because that's where GET: / is? | 21:03 |
cdent | Instead of 1.30.x (where the awesome is) | 21:03 |
gordc | cdent: yeah. i don't know what else we're using | 21:03 |
gordc | cdent: i'll probably do that in another patch | 21:04 |
gordc | maybe | 21:04 |
gordc | who knows | 21:04 |
cdent | I think there may be some stuff that relies on >1.20 because global requirements is 1.26.1 | 21:05 |
cdent | and since you're uncapped I would guess so | 21:05 |
*** Jack_Iv has quit IRC | 21:06 | |
cdent | 1.19.1 was required for puppet's ci testing of telemetry related projects | 21:06 |
cdent | and 1.13.0 for sorting and filtering jsonpaths (which are used in at least gnocchi) | 21:07 |
gordc | cdent: oh. i think the projects use really basic stuff though | 21:07 |
gordc | although we may be using last_url somewhere. | 21:07 |
gordc | our overlord jd__ usually doesn't like when requirements change. | 21:08 |
cdent | except that most of gabbi's changes are the result of features needed in telemetry projects | 21:10 |
cdent | next in line is random internet people | 21:10 |
cdent | and then nova | 21:10 |
gordc | random internet... you have a more successful project than openstack :P | 21:11 |
jd__ | cdent: there's no point in *forcing* people to have e.g. 1.30 if 1.7 is enough to test the project :) | 21:16 |
jd__ | other than that, yes sure, always use latest version of software because they supposedly have less bugs :) | 21:18 |
jd__ | that's not what requirement is for (which is something openstack has not yet understand lol) | 21:18 |
openstackgerrit | gordon chung proposed openstack/ceilometermiddleware: Revert "Show team and repo badges on README" https://review.openstack.org/420967 | 21:19 |
cdent | jd__: thta's the point of my comment above: there are features beyond 1.7 that are being used | 21:20 |
cdent | anyway, time to watch some zombies | 21:22 |
gordc | how come you europeans work so late? | 21:22 |
*** cdent has quit IRC | 21:22 | |
*** paw has joined #openstack-telemetry | 21:25 | |
*** jdandrea has quit IRC | 21:27 | |
*** dave-mccowan has joined #openstack-telemetry | 21:32 | |
*** dave-mccowan has quit IRC | 21:54 | |
*** thorst has quit IRC | 21:55 | |
*** nadya has joined #openstack-telemetry | 22:00 | |
*** nadya has quit IRC | 22:05 | |
openstackgerrit | Merged openstack/panko: modernise gabbi usage https://review.openstack.org/420926 | 22:07 |
*** thorst has joined #openstack-telemetry | 22:24 | |
*** rbak has joined #openstack-telemetry | 22:27 | |
*** thorst has quit IRC | 22:28 | |
*** rbak has quit IRC | 22:53 | |
*** rbak has joined #openstack-telemetry | 23:08 | |
*** leitan has quit IRC | 23:16 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!