18 lines
		
	
	
		
			505 B
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			505 B
		
	
	
	
		
			Groovy
		
	
	
	
apply plugin: "otel.library-instrumentation"
 | 
						|
 | 
						|
dependencies {
 | 
						|
  implementation "io.opentelemetry:opentelemetry-extension-aws"
 | 
						|
 | 
						|
  library "software.amazon.awssdk:aws-core:2.2.0"
 | 
						|
  library "software.amazon.awssdk:aws-json-protocol:2.2.0"
 | 
						|
 | 
						|
  testImplementation project(':instrumentation:aws-sdk:aws-sdk-2.2:testing')
 | 
						|
 | 
						|
  testImplementation "org.assertj:assertj-core"
 | 
						|
  testImplementation "org.mockito:mockito-core"
 | 
						|
}
 | 
						|
 | 
						|
test {
 | 
						|
  systemProperty "otel.instrumentation.aws-sdk.experimental-span-attributes", true
 | 
						|
}
 |