Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ dependencies {
testImplementation("io.opentracing.contrib.dropwizard:dropwizard-opentracing:0.2.2") {
isTransitive = false
}
testImplementation("com.signalfx.public:signalfx-trace-api:0.48.0-sfx1")
testImplementation("com.datadoghq:dd-trace-api:1.43.0")
testImplementation("com.signalfx.public:signalfx-trace-api:0.48.0-sfx8")
// Old and new versions of kamon use different packages for Trace annotation
testImplementation("io.kamon:kamon-annotation_2.11:0.6.7") {
isTransitive = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public String newrelic() {
return "hello!";
}

// End of life -- never use this annotation in new development
@com.signalfx.tracing.api.Trace
public String signalfx() {
Span.current().setAttribute("providerAttr", "SignalFx");
Expand Down
Loading