File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/main/java/software/amazon/opentelemetry/javaagent/providers Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,10 @@ dependencies {
4141 // Import AWS SDK v1 core for ARN parsing utilities
4242 implementation(" com.amazonaws:aws-java-sdk-core:1.12.773" )
4343 // Export configuration
44- compileOnly (" io.opentelemetry:opentelemetry-exporter-otlp" )
44+ implementation (" io.opentelemetry:opentelemetry-exporter-otlp" )
4545 // For Udp emitter
4646 compileOnly(" io.opentelemetry:opentelemetry-exporter-otlp-common" )
4747 // For HTTP SigV4 emitter
48- compileOnly(" com.squareup.okhttp3:okhttp" )
4948 implementation(" software.amazon.awssdk:auth:2.30.14" )
5049 implementation(" software.amazon.awssdk:http-auth-aws:2.30.14" )
5150
Original file line number Diff line number Diff line change 2525import java .util .*;
2626import java .util .function .Supplier ;
2727import javax .annotation .concurrent .Immutable ;
28- import org .jetbrains .annotations .NotNull ;
2928import org .slf4j .Logger ;
3029import org .slf4j .LoggerFactory ;
3130import software .amazon .awssdk .auth .credentials .AwsCredentials ;
@@ -63,7 +62,7 @@ public OtlpAwsSpanExporter(String endpoint) {
6362 }
6463
6564 @ Override
66- public CompletableResultCode export (@ NotNull Collection <SpanData > spans ) {
65+ public CompletableResultCode export (Collection <SpanData > spans ) {
6766 this .spanData = spans ;
6867 return this .parentExporter .export (spans );
6968 }
You can’t perform that action at this time.
0 commit comments