Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
nesb1 committed Oct 6, 2023
2 parents 0327842 + 7ac6744 commit 438977f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `opentelemetry-instrumentation-aio-pika` and `opentelemetry-instrumentation-pika` Fix missing trace context propagation when trace not recording.
([#1969](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1969))
- Fix version of Flask dependency `werkzeug`
([#1980](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1980))

## Version 1.20.0/0.41b0 (2023-09-01)

Expand Down Expand Up @@ -357,7 +359,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `opentelemetry-instrumentation-sqlalchemy` Added span for the connection phase ([#1133](https://github.com/open-telemetry/opentelemetry-python-contrib/issues/1133))
- Add metric instrumentation in asgi
([#1197](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1197))
- Add metric instumentation for flask
- Add metric instrumentation for flask
([#1186](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1186))
- Add a test for asgi using NoOpTracerProvider
([#1367](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1367))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies = [
[project.optional-dependencies]
instruments = [
"flask >= 1.0, < 3.0",
"werkzeug < 3.0.0"
]
test = [
"opentelemetry-instrumentation-flask[instruments]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
).instrument()
Model intrumentation example:
Model instrumentation example:
.. code-block:: python
Expand Down Expand Up @@ -291,7 +291,7 @@ class descendent) is being instrumented with opentelemetry. Within a
SklearnInstrumentor(packages=packages).instrument()
Model intrumentation example:
Model instrumentation example:
.. code-block:: python
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@
"library": "flask >= 1.0, < 3.0",
"instrumentation": "opentelemetry-instrumentation-flask==0.42b0.dev",
},
"werkzeug": {
"library": "werkzeug < 3.0.0",
"instrumentation": "opentelemetry-instrumentation-flask==0.42b0.dev",
},
"grpcio": {
"library": "grpcio ~= 1.27",
"instrumentation": "opentelemetry-instrumentation-grpc==0.42b0.dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ def set(self, carrier, key, value): # pylint: disable=no-self-use


class FuncSetter(Setter):
"""FuncSetter coverts a function into a valid Setter. Any function that can
set values in a carrier can be converted into a Setter by using FuncSetter.
This is useful when injecting trace context into non-dict objects such
HTTP Response objects for different framework.
"""FuncSetter converts a function into a valid Setter. Any function that
can set values in a carrier can be converted into a Setter by using
FuncSetter. This is useful when injecting trace context into non-dict
objects such HTTP Response objects for different framework.
For example, it can be used to create a setter for Falcon response object as:
For example, it can be used to create a setter for Falcon response object
as:
setter = FuncSetter(falcon.api.Response.append_header)
Expand Down

0 comments on commit 438977f

Please sign in to comment.