Skip to content
Merged
Changes from all 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
4 changes: 2 additions & 2 deletions instrumentation/aws-sdk/aws-sdk-2.2/library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ To instrument all AWS SDK clients include the `opentelemetry-aws-sdk-2.2-autocon
To register instrumentation only on a specific SDK client, register the interceptor when creating it.

```java
AwsSdkTelemetry telemetrty = AwsSdkTelemetry.create(openTelemetry).build();
AwsSdkTelemetry telemetry = AwsSdkTelemetry.create(openTelemetry).build();
DynamoDbClient client = DynamoDbClient.builder()
.overrideConfiguration(ClientOverrideConfiguration.builder()
.addExecutionInterceptor(telemetrty.newExecutionInterceptor()))
.addExecutionInterceptor(telemetry.newExecutionInterceptor()))
.build())
.build();
```
Expand Down
Loading