Commit Graph

24 Commits

Author SHA1 Message Date
OpenStack Release Bot 3fb0487e5b reno: Update master for unmaintained/victoria
Update the victoria release notes configuration to build from
unmaintained/victoria.

Change-Id: I68da5caef168d9f40853386ccdfc071d2462143c
2024-03-07 14:19:10 +00:00
Sahid Orentino Ferdjaoui 3c5feadda2 profiler: add python requests profile
Signed-off-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui@industrialdiscipline.com>
Change-Id: I00e9f5661a3bd54acc846e8c326896d21e70be36
2023-06-01 08:44:08 +02:00
Sahid Orentino Ferdjaoui 908e740232 add support of otlp exporter
Depends-On: Idcff5d79b4884dd1cc7ed1ab42c9e4ce89d4a6d2
Signed-off-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui@industrialdiscipline.com>
Change-Id: I74cdcb2aa99b0162ba1c14059111f09d0bb534e3
2023-05-10 10:18:48 +02:00
Sahid Orentino Ferdjaoui 52246cfbf6 devstack: remove jaeger container on unstack
Let's remove the docker container created with Jaeger Tracing when
unstacking, this avoid `./stack.sh` to fail when recreating the
environnement mentioning that a docker container named jaeger already
exists.

Signed-off-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui@industrialdiscipline.com>
Change-Id: I785c7b23be92eb5bc4da0366f705a77c3910d5c2
2023-03-23 13:05:33 +01:00
Zuul 4239bcaa56 Merge "Change StrictRedis usage to Redis" 2023-02-17 13:43:33 +00:00
Sahid Orentino Ferdjaoui 91d7c35f1c jaeger: introduce process tags' option for tracer
Closes-bug: 2006611
Signed-off-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui@industrialdiscipline.com>
Change-Id: I938b52d7785d421015b888c9d70a5b0bf032772f
2023-02-16 12:17:31 +00:00
Sahid Orentino Ferdjaoui b7468756bc jaeger: introduce service name prefix
Closes-bug: #2003092
Signed-off-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui@industrialdiscipline.com>
Change-Id: I743fdc1203af6735d5772728e1b5c2ca16d41d9e
2023-02-16 09:08:50 +01:00
Tobias Urdin f8d80022f3 Change StrictRedis usage to Redis
The StrictRedis class is only an alias for
Redis in >= 3.0.0

Change-Id: I5b72306ec2d3164b285c24190c0d3f9ced4b6a31
2023-02-08 10:53:26 +00:00
niuke 0b1bfadebd remove unicode prefix from code
Change-Id: I28bfa2a34222dae4ede0dad527f264eee4d5d0c4
2022-08-08 15:27:45 +08:00
Hervé Beraud e29b187151 Fix formattiing of release list
Change-Id: Ib8ac1b8288889789814334b384149ed19c8b4ef1
2022-05-27 14:04:22 +02:00
OpenStack Release Bot ba16314e01 Update master for stable/victoria
Add file to the reno documentation build to show release notes for
stable/victoria.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/victoria.

Change-Id: Idfafbd378f9b5cf3c060edc4090177406ee0ea84
Sem-Ver: feature
2020-09-11 21:03:12 +00:00
Andreas Jaeger c568c9f769 Switch to newer openstackdocstheme and reno versions
Switch to openstackdocstheme 2.2.1 and reno 3.1.0 versions. Using
these versions will allow especially:
* Linking from HTML to PDF document
* Allow parallel building of documents
* Fix some rendering problems

Update Sphinx version as well.

Disable openstackdocs_auto_name to use 'project' variable as name.

Change pygments_style to 'native' since old theme version always used
'native' and the theme now respects the setting and using 'sphinx' can
lead to some strange rendering.

openstackdocstheme renames some variables, so follow the renames
before the next release removes them. A couple of variables are also
not needed anymore, remove them.

See also
http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html

Change-Id: Ia700e656b4c2616ccbff32707eb4297a1dafbe3b
2020-06-02 15:17:57 +02:00
OpenStack Release Bot 6d07dabd80 Update master for stable/ussuri
Add file to the reno documentation build to show release notes for
stable/ussuri.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/ussuri.

Change-Id: Iaa0abf7e3e8ca5988fe69b60bbe76b631096c03a
Sem-Ver: feature
2020-04-14 10:19:28 +00:00
Andreas Jaeger 7eaa8648cd [ussuri][goal] Drop python 2.7 support and testing
OpenStack is dropping the py2.7 support in ussuri cycle.

Complete discussion & schedule can be found in
- http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html
- https://etherpad.openstack.org/p/drop-python2-support

Ussuri Communtiy-wide goal:
https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html

Switch to using modern sphinx-build.
Remove cruft from setup.cfg

Drop non-voting jobs from gate queue.

Change-Id: I2cc764bd3de8130aa25868b57b2e89341c71617e
2020-02-04 11:24:14 +01:00
OpenStack Release Bot cc868f50d0 Update master for stable/train
Add file to the reno documentation build to show release notes for
stable/train.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/train.

Change-Id: I001fb0dd6e0a0225c83bd6a3b9fad2b108dc3385
Sem-Ver: feature
2019-09-20 16:42:30 +00:00
Ilya Shakhat 147effea78 Optimize storage schema for Redis driver
The original Redis driver stored each tracing event under its own key,
as result both list and get operations required a full scan of the database.
With this patch traces are stored as Redis lists under a key equal
to trace id. So list operation iterates only over unique trace ids
and get operation retrieves the content of a specified list. Note that
list operation still needs to retrieve at least 1 event from the trace
in order to get a timestamp.

Performance test is executed with 1000 traces each consisting 1000 events:
 * existing driver:
   * write: 48 sec
   * list:  41 sec
   * get:   3.6 sec
 * optimized driver:
   * write: 44 sec
   * list:  4.1 sec
   * get:   0.01 sec

Change-Id: I09a122f91e3d26531965fe53d6df7c66f502de4c
2019-04-09 13:27:18 +02:00
OpenStack Release Bot 27993c69b4 Update master for stable/stein
Add file to the reno documentation build to show release notes for
stable/stein.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/stein.

Change-Id: I8e44cbe2b76414c3adc120e9c86a446e57ca5bfd
Sem-Ver: feature
2019-03-18 14:48:15 +00:00
OpenStack Release Bot fdd46e6d38 Update reno for stable/rocky
Change-Id: I8ffbf370c18608a79223657984171dd5ad150321
2018-07-26 12:41:30 +00:00
OpenStack Release Bot 42c75bf5c3 Update reno for stable/queens
Change-Id: I3c4b5327e99581860e0d4f88440867c2ff8a1beb
2018-01-24 18:09:49 +00:00
Andreas Jaeger d741bffc36 Remove setting of version/release from releasenotes
Release notes are version independent, so remove version/release
values. We've found that projects now require the service package
to be installed in order to build release notes, and this is entirely
due to the current convention of pulling in the version information.

Release notes should not need installation in order to build, so this
unnecessary version setting needs to be removed.

This is needed for new release notes publishing, see
I56909152975f731a9d2c21b2825b972195e48ee8 and the discussion starting
at
http://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html
.

Change-Id: Id437099e17e47512284c736de821d0cfc366c65a
2017-11-16 21:56:16 +01:00
OpenStack Release Bot 8dee13ccba Update reno for stable/pike
Change-Id: Ie2df1cd81429813539f628dce1f928e6b213c1a1
2017-07-28 21:06:02 +00:00
Akihiro Motoki ef86e88f9f Switch from oslosphinx to openstackdocstheme
Change-Id: Ic6d11356de62f9779f96fbe15160ee1004c45245
2017-07-06 21:38:42 +00:00
OpenStack Release Bot 51b568906a Update reno for stable/ocata
Change-Id: Iecee7cb08a4f5372a1a303675cac453776f1be36
2017-01-20 19:16:16 +00:00
ChangBo Guo(gcb) 9407108fee Add reno for release notes management
The release management team have indicated this is their preferred way
to collect release notes in future.

Closes-Bug: #1634356

Change-Id: I40ebe47509ba5cabd57ed8c4987ae6ec1e2b5d5f
2016-11-03 18:38:01 +08:00