Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#3366](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3366))
- `opentelemetry-instrumentation`: add support for `OTEL_PYTHON_AUTO_INSTRUMENTATION_EXPERIMENTAL_GEVENT_PATCH` to inform opentelemetry-instrument about gevent monkeypatching
([#3699](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3699))
- `opentelemetry-instrumentation`: botocore: upgrade moto package from 5.0.9 to 5.1.11
([#3736](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3736))

## Version 1.36.0/0.57b0 (2025-07-29)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ iniconfig==2.0.0
Jinja2==3.1.6
jmespath==1.0.1
MarkupSafe==2.1.5
moto==5.0.9
moto==5.1.11
packaging==24.0
pluggy==1.5.0
py-cpuinfo==9.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ iniconfig==2.0.0
Jinja2==3.1.6
jmespath==1.0.1
MarkupSafe==2.1.5
moto==5.0.9
moto==5.1.11
packaging==24.0
pluggy==1.5.0
py-cpuinfo==9.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def test_scan(self):
Limit=42,
Select="ALL_ATTRIBUTES",
TotalSegments=17,
Segment=21,
Segment=16,
ProjectionExpression="PE",
ConsistentRead=True,
ReturnConsumedCapacity="TOTAL",
Expand All @@ -448,14 +448,14 @@ def test_scan(self):
span = self.assert_span("Scan")
self.assert_table_names(span, self.default_table_name)
self.assertEqual(
21, span.attributes[SpanAttributes.AWS_DYNAMODB_SEGMENT]
16, span.attributes[SpanAttributes.AWS_DYNAMODB_SEGMENT]
)
self.assertEqual(
17, span.attributes[SpanAttributes.AWS_DYNAMODB_TOTAL_SEGMENTS]
)
self.assertEqual(1, span.attributes[SpanAttributes.AWS_DYNAMODB_COUNT])
self.assertEqual(0, span.attributes[SpanAttributes.AWS_DYNAMODB_COUNT])
self.assertEqual(
1, span.attributes[SpanAttributes.AWS_DYNAMODB_SCANNED_COUNT]
0, span.attributes[SpanAttributes.AWS_DYNAMODB_SCANNED_COUNT]
)
self.assert_attributes_to_get(span, "id", "idl")
self.assert_consistent_read(span, True)
Expand Down
Loading