File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
opentelemetry-api/src/opentelemetry/context Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
27
([ #2726 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2726 ) )
28
28
- fix: frozenset object has no attribute items
29
29
([ #2727 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2727 ) )
30
+ - fix: create suppress HTTP instrumentation key in opentelemetry context
31
+ ([ #2729 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2729 ) )
30
32
- Support logs SDK auto instrumentation enable/disable with env
31
33
([ #2728 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2728 ) )
32
34
- fix: update entry point object references for metrics
@@ -40,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
40
42
- Fix Jaeger propagator usage with NonRecordingSpan
41
43
([ #2762 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2762 ) )
42
44
45
+
43
46
## [ 1.12.0rc1-0.31b0] ( https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.12.0rc1-0.31b0 ) - 2022-05-17
44
47
45
48
- Fix LoggingHandler to handle LogRecord with exc_info=False
Original file line number Diff line number Diff line change @@ -163,3 +163,6 @@ def detach(token: object) -> None:
163
163
# Once the decision around how to suppress instrumentation is made in the
164
164
# spec, this key should be moved accordingly.
165
165
_SUPPRESS_INSTRUMENTATION_KEY = create_key ("suppress_instrumentation" )
166
+ _SUPPRESS_HTTP_INSTRUMENTATION_KEY = create_key (
167
+ "suppress_http_instrumentation"
168
+ )
You can’t perform that action at this time.
0 commit comments