Adds Cassandra support (#1974)

Co-authored-by: Mark Paluch <mpaluch@vmware.com>
This commit is contained in:
Marcin Grzejszczak
2021-06-10 15:46:04 +02:00
committed by GitHub
parent 209ce7d8ec
commit 17ba1b18d5
46 changed files with 1916 additions and 19 deletions

View File

@@ -132,6 +132,12 @@ public interface AssertingSpan extends Span {
return this;
}
@Override
default Span remoteIpAndPort(String ip, int port) {
getDelegate().remoteIpAndPort(ip, port);
return this;
}
/**
* @param documentedSpan span configuration
* @param span span to wrap in assertions

View File

@@ -93,6 +93,12 @@ public interface AssertingSpanBuilder extends Span.Builder {
return this;
}
@Override
default Span.Builder remoteIpAndPort(String ip, int port) {
getDelegate().remoteIpAndPort(ip, port);
return this;
}
@Override
default AssertingSpanBuilder setParent(TraceContext context) {
getDelegate().setParent(context);