File tree 3 files changed +8
-3
lines changed
instrumentation/opentelemetry-instrumentation-redis/src/opentelemetry/instrumentation/redis
tests/opentelemetry-docker-tests/tests/redis
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
24
24
([ #1424 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1424 ) )
25
25
- ` opentelemetry-instrumentation-dbapi ` Fix the check for the connection already being instrumented in instrument_connection().
26
26
([ #1424 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1424 ) )
27
+ - Remove db.name attribute from Redis instrumentation
28
+ ([ #1427 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1427 ) )
27
29
28
30
## Version 1.14.0/0.35b0 (2022-11-03)
29
31
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ def _extract_conn_attributes(conn_kwargs):
28
28
SpanAttributes .DB_SYSTEM : DbSystemValues .REDIS .value ,
29
29
}
30
30
db = conn_kwargs .get ("db" , 0 )
31
- attributes [SpanAttributes .DB_NAME ] = db
32
31
attributes [SpanAttributes .DB_REDIS_DATABASE_INDEX ] = db
33
32
try :
34
33
attributes [SpanAttributes .NET_PEER_NAME ] = conn_kwargs .get (
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ def tearDown(self):
37
37
def _check_span (self , span , name ):
38
38
self .assertEqual (span .name , name )
39
39
self .assertIs (span .status .status_code , trace .StatusCode .UNSET )
40
- self .assertEqual (span .attributes .get (SpanAttributes .DB_NAME ), 0 )
40
+ self .assertEqual (
41
+ span .attributes .get (SpanAttributes .DB_REDIS_DATABASE_INDEX ), 0
42
+ )
41
43
self .assertEqual (
42
44
span .attributes [SpanAttributes .NET_PEER_NAME ], "localhost"
43
45
)
@@ -209,7 +211,9 @@ def tearDown(self):
209
211
def _check_span (self , span , name ):
210
212
self .assertEqual (span .name , name )
211
213
self .assertIs (span .status .status_code , trace .StatusCode .UNSET )
212
- self .assertEqual (span .attributes .get (SpanAttributes .DB_NAME ), 0 )
214
+ self .assertEqual (
215
+ span .attributes .get (SpanAttributes .DB_REDIS_DATABASE_INDEX ), 0
216
+ )
213
217
self .assertEqual (
214
218
span .attributes [SpanAttributes .NET_PEER_NAME ], "localhost"
215
219
)
You can’t perform that action at this time.
0 commit comments