Skip to content

Commit

Permalink
Update README.md - typo fix (#12376)
Browse files Browse the repository at this point in the history
  • Loading branch information
RajatArora08 authored Oct 1, 2024
1 parent b184587 commit c6c0bb1
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit c6c0bb1

Please sign in to comment.