File tree 3 files changed +6
-6
lines changed
instrumentation/opentelemetry-instrumentation-aiohttp-client/src/opentelemetry/instrumentation/aiohttp_client
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -40,21 +40,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
40
40
41
41
- ` opentelemetry-instrumentation-django ` Django: Conditionally create SERVER spans
42
42
([ #832 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/832 ) )
43
-
44
43
- ` opentelemetry-instrumentation-flask ` Flask: Conditionally create SERVER spans
45
44
([ #828 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/828 ) )
46
45
- ` opentelemetry-instrumentation-celery ` Celery: Support partial task time limit
47
46
([ #846 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/issues/846 ) )
48
-
49
47
- ` opentelemetry-instrumentation-asgi ` ASGI: Conditionally create SERVER spans
50
48
([ #843 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/843 ) )
51
-
52
49
- ` opentelemetry-instrumentation-django ` Django: fix issue preventing detection of MIDDLEWARE_CLASSES
53
-
54
50
- ` opentelemetry-instrumentation-sqlite3 ` Instrumentation now works with ` dbapi2.connect `
55
-
56
51
- ` opentelemetry-instrumentation-kafka ` Kafka: safe kafka partition extraction
57
52
([ #872 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/872 ) )
53
+ - ` opentelemetry-instrumentation-aiohttp-client ` aiohttp: Correct url filter input type
54
+ ([ #843 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/864 ) )
55
+
58
56
59
57
## [ 1.8.0-0.27b0] ( https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.8.0-0.27b0 ) - 2021-12-17
60
58
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ class_references=
25
25
httpx.AsyncBaseTransport
26
26
httpx.SyncByteStream
27
27
httpx.AsyncByteStream
28
+ yarl.URL
28
29
29
30
anys =
30
31
; API
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ def response_hook(span: Span, params: typing.Union[
91
91
92
92
import aiohttp
93
93
import wrapt
94
+ import yarl
94
95
95
96
from opentelemetry import context as context_api
96
97
from opentelemetry import trace
@@ -108,7 +109,7 @@ def response_hook(span: Span, params: typing.Union[
108
109
from opentelemetry .trace .status import Status , StatusCode
109
110
from opentelemetry .util .http import remove_url_credentials
110
111
111
- _UrlFilterT = typing .Optional [typing .Callable [[str ], str ]]
112
+ _UrlFilterT = typing .Optional [typing .Callable [[yarl . URL ], str ]]
112
113
_RequestHookT = typing .Optional [
113
114
typing .Callable [[Span , aiohttp .TraceRequestStartParams ], None ]
114
115
]
You can’t perform that action at this time.
0 commit comments