Skip to content

Commit fd7f9c4

Browse files
authored
Merge branch 'main' into middleware-always-set-status-code-on-duration-attrs
2 parents 392a03b + 7da7f55 commit fd7f9c4

File tree

25 files changed

+2602
-675
lines changed

25 files changed

+2602
-675
lines changed

.github/workflows/instrumentations_1.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
- "sdk-extension-aws"
3636
- "propagator-aws-xray"
3737
- "propagator-ot-trace"
38+
- "resource-detector-azure"
3839
- "resource-detector-container"
40+
- "util-http"
3941
os: [ubuntu-20.04]
4042
exclude:
4143
- python-version: pypy3

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,10 @@ jobs:
6868
- "processor-baggage"
6969
- "propagator-aws-xray"
7070
- "propagator-ot-trace"
71+
- "resource-detector-azure"
7172
- "resource-detector-container"
7273
- "sdk-extension-aws"
74+
- "util-http"
7375
os: [ubuntu-20.04]
7476
runs-on: ubuntu-20.04
7577
steps:

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
<<<<<<< middleware-always-set-status-code-on-duration-attrs
1011
- `opentelemetry-instrumentation-django` Handle exceptions from request/response hooks
1112
([#2153](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2153))
1213
- `opentelemetry-instrumentation-asyncio` instrumented `asyncio.wait_for` properly raises `asyncio.TimeoutError` as expected
@@ -19,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1920
([#2627](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2627))
2021

2122

23+
=======
24+
>>>>>>> main
2225
### Added
2326

2427
- `opentelemetry-instrumentation-pyramid` Record exceptions raised when serving a request
@@ -29,11 +32,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2932
([#2616](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2616))
3033
- `opentelemetry-instrumentation-confluent-kafka` Add support for produce purge
3134
([#2638](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2638))
35+
- `opentelemetry-instrumentation-httpx` Implement new semantic convention opt-in migration with stable http semantic conventions
36+
([#2631](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2631))
37+
- `opentelemetry-instrumentation-system-metrics` Permit to use psutil 6.0+.
38+
([#2630](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2630))
3239

3340
### Breaking changes
3441

3542
- `opentelemetry-instrumentation-asgi`, `opentelemetry-instrumentation-fastapi`, `opentelemetry-instrumentation-starlette` Use `tracer` and `meter` of originating components instead of one from `asgi` middleware
3643
([#2580](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2580))
44+
- Populate `{method}` as `HTTP` on `_OTHER` methods from scope
45+
([#2610](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2610))
46+
47+
### Added
48+
49+
- `opentelemetry-instrumentation-asgi` Implement new semantic convention opt-in with stable http semantic conventions
50+
([#2610](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2610))
3751

3852
### Fixed
3953

@@ -49,6 +63,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4963
([#2644](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2644))
5064
- `opentelemetry-instrumentation-confluent-kafka` Confluent Kafka: Ensure consume span is ended when consumer is closed
5165
([#2640](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2640))
66+
- `opentelemetry-instrumentation-asgi` Fix generation of `http.target` and `http.url` attributes for ASGI apps
67+
using sub apps
68+
([#2477](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2477))
69+
- `opentelemetry-instrumentation-aws-lambda` Bugfix: AWS Lambda event source key incorrect for SNS in instrumentation library.
70+
([#2612](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2612))
71+
- `opentelemetry-instrumentation-asyncio` instrumented `asyncio.wait_for` properly raises `asyncio.TimeoutError` as expected
72+
([#2637](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2637))
73+
- `opentelemetry-instrumentation-django` Handle exceptions from request/response hooks
74+
([#2153](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2153))
75+
- `opentelemetry-instrumentation-asgi` Removed `NET_HOST_NAME` AND `NET_HOST_PORT` from active requests count attribute
76+
([#2610](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2610))
77+
5278

5379
## Version 1.25.0/0.46b0 (2024-05-31)
5480

instrumentation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
| [opentelemetry-instrumentation-aiohttp-client](./opentelemetry-instrumentation-aiohttp-client) | aiohttp ~= 3.0 | No | experimental
66
| [opentelemetry-instrumentation-aiohttp-server](./opentelemetry-instrumentation-aiohttp-server) | aiohttp ~= 3.0 | No | experimental
77
| [opentelemetry-instrumentation-aiopg](./opentelemetry-instrumentation-aiopg) | aiopg >= 0.13.0, < 2.0.0 | No | experimental
8-
| [opentelemetry-instrumentation-asgi](./opentelemetry-instrumentation-asgi) | asgiref ~= 3.0 | No | experimental
8+
| [opentelemetry-instrumentation-asgi](./opentelemetry-instrumentation-asgi) | asgiref ~= 3.0 | Yes | migration
99
| [opentelemetry-instrumentation-asyncio](./opentelemetry-instrumentation-asyncio) | asyncio | No | experimental
1010
| [opentelemetry-instrumentation-asyncpg](./opentelemetry-instrumentation-asyncpg) | asyncpg >= 0.12.0 | No | experimental
1111
| [opentelemetry-instrumentation-aws-lambda](./opentelemetry-instrumentation-aws-lambda) | aws_lambda | No | experimental
@@ -22,7 +22,7 @@
2222
| [opentelemetry-instrumentation-fastapi](./opentelemetry-instrumentation-fastapi) | fastapi ~= 0.58 | Yes | experimental
2323
| [opentelemetry-instrumentation-flask](./opentelemetry-instrumentation-flask) | flask >= 1.0 | Yes | migration
2424
| [opentelemetry-instrumentation-grpc](./opentelemetry-instrumentation-grpc) | grpcio ~= 1.27 | No | experimental
25-
| [opentelemetry-instrumentation-httpx](./opentelemetry-instrumentation-httpx) | httpx >= 0.18.0 | No | experimental
25+
| [opentelemetry-instrumentation-httpx](./opentelemetry-instrumentation-httpx) | httpx >= 0.18.0 | No | migration
2626
| [opentelemetry-instrumentation-jinja2](./opentelemetry-instrumentation-jinja2) | jinja2 >= 2.7, < 4.0 | No | experimental
2727
| [opentelemetry-instrumentation-kafka-python](./opentelemetry-instrumentation-kafka-python) | kafka-python >= 2.0 | No | experimental
2828
| [opentelemetry-instrumentation-logging](./opentelemetry-instrumentation-logging) | logging | No | experimental

0 commit comments

Comments
 (0)