You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- AwsLambdaInstrumentor handles and re-raises function exception ([#2245](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2245))
156
+
- AwsLambdaInstrumentor handles and re-raises function exception
Copy file name to clipboardExpand all lines: instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio/__init__.py
Copy file name to clipboardExpand all lines: instrumentation/opentelemetry-instrumentation-confluent-kafka/src/opentelemetry/instrumentation/confluent_kafka/__init__.py
+24
Original file line number
Diff line number
Diff line change
@@ -144,6 +144,10 @@ def consume(
144
144
): # pylint: disable=useless-super-delegation
145
145
returnsuper().consume(*args, **kwargs)
146
146
147
+
# This method is deliberately implemented in order to allow wrapt to wrap this function
Copy file name to clipboardExpand all lines: instrumentation/opentelemetry-instrumentation-django/src/opentelemetry/instrumentation/django/middleware/otel_middleware.py
+16-6
Original file line number
Diff line number
Diff line change
@@ -187,6 +187,7 @@ def _get_span_name(request):
187
187
returnrequest.method
188
188
189
189
# pylint: disable=too-many-locals
190
+
# pylint: disable=too-many-branches
190
191
defprocess_request(self, request):
191
192
# request.META is a dictionary containing all available HTTP headers
Copy file name to clipboardExpand all lines: instrumentation/opentelemetry-instrumentation-psycopg/src/opentelemetry/instrumentation/psycopg/__init__.py
0 commit comments