Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zipkin: Allow SetTag even when the CS annotation is missing (#1414) #1418

Merged
merged 2 commits into from
Aug 9, 2017
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
1 change: 1 addition & 0 deletions ci/bazel/get_workspace_status
1 change: 1 addition & 0 deletions ci/tools/bazel.rc
13 changes: 1 addition & 12 deletions source/common/tracing/zipkin/zipkin_tracer_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ void ZipkinSpan::finishSpan(Tracing::SpanFinalizer& finalizer) {
}

void ZipkinSpan::setTag(const std::string& name, const std::string& value) {
if (this->hasCSAnnotation()) {
span_.setTag(name, value);
}
span_.setTag(name, value);
}

void ZipkinSpan::injectContext(Http::HeaderMap& request_headers) {
Expand All @@ -48,15 +46,6 @@ Tracing::SpanPtr ZipkinSpan::spawnChild(const std::string& name, SystemTime star
return Tracing::SpanPtr{new ZipkinSpan(*tracer_.startSpan(name, start_time, context), tracer_)};
}

bool ZipkinSpan::hasCSAnnotation() {
auto annotations = span_.annotations();
if (annotations.size() > 0) {
// We currently expect only one annotation to be in the span when this function is called.
return annotations[0].value() == ZipkinCoreConstants::get().CLIENT_SEND;
}
return false;
}

Driver::TlsTracer::TlsTracer(TracerPtr&& tracer, Driver& driver)
: tracer_(std::move(tracer)), driver_(driver) {}

Expand Down
10 changes: 0 additions & 10 deletions source/common/tracing/zipkin/zipkin_tracer_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,13 @@ class ZipkinSpan : public Tracing::Span {
* In Zipkin, binary annotations of the type "string" allow arbitrary key-value pairs
* to be associated with a span.
*
* This function will only add the binary annotation to the span IF
* it contains the CS (Client Send) basic annotation. If this span contains the CS basic
* annotation then this Envoy instance initiated the span. Only the Envoy that initiates a Zipkin
* span should add binary annotations to it; otherwise, duplicate binary annotations
* would be created.
*
* Note that Tracing::HttpTracerUtility::finalizeSpan() makes several calls to this function,
* associating several key-value pairs with this span.
*/
void setTag(const std::string& name, const std::string& value) override;

void injectContext(Http::HeaderMap& request_headers) override;
Tracing::SpanPtr spawnChild(const std::string& name, SystemTime start_time) override;
/**
* @return true if this span has a CS (Client Send) basic annotation, or false otherwise.
*/
bool hasCSAnnotation();

/**
* @return a reference to the Zipkin::Span object.
Expand Down
23 changes: 16 additions & 7 deletions test/common/tracing/zipkin/zipkin_tracer_impl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ TEST_F(ZipkinDriverTest, ZipkinSpanTest) {
EXPECT_EQ("value", zipkin_zipkin_span.binaryAnnotations()[0].value());

// ====
// Test innocuous setTag() with annotated span
// Test setTag() with SR annotated span
// ====

const std::string trace_id = Hex::uint64ToHex(Util::generateRandom64());
Expand All @@ -312,18 +312,27 @@ TEST_F(ZipkinDriverTest, ZipkinSpanTest) {
Tracing::SpanPtr span2 = driver_->startSpan(request_headers_, operation_name_, start_time_);

ZipkinSpanPtr zipkin_span2(dynamic_cast<ZipkinSpan*>(span2.release()));
zipkin_span2->setTag("key", "value");
zipkin_span2->setTag("key2", "value2");

Span& zipkin_zipkin_span2 = zipkin_span2->span();
EXPECT_EQ(0ULL, zipkin_zipkin_span2.binaryAnnotations().size());
EXPECT_EQ(1ULL, zipkin_zipkin_span2.binaryAnnotations().size());
EXPECT_EQ("key2", zipkin_zipkin_span2.binaryAnnotations()[0].key());
EXPECT_EQ("value2", zipkin_zipkin_span2.binaryAnnotations()[0].value());

// ====
// Test innocuous setTag() with empty annotations vector
// Test setTag() with empty annotations vector
// ====
Tracing::SpanPtr span3 = driver_->startSpan(request_headers_, operation_name_, start_time_);
ZipkinSpanPtr zipkin_span3(dynamic_cast<ZipkinSpan*>(span3.release()));
Span& zipkin_zipkin_span3 = zipkin_span3->span();

std::vector<Annotation> annotations;
zipkin_zipkin_span2.setAnnotations(annotations);
zipkin_span2->setTag("key", "value");
EXPECT_EQ(0ULL, zipkin_zipkin_span2.binaryAnnotations().size());
zipkin_zipkin_span3.setAnnotations(annotations);

zipkin_span3->setTag("key3", "value3");
EXPECT_EQ(1ULL, zipkin_zipkin_span3.binaryAnnotations().size());
EXPECT_EQ("key3", zipkin_zipkin_span3.binaryAnnotations()[0].key());
EXPECT_EQ("value3", zipkin_zipkin_span3.binaryAnnotations()[0].value());
}
} // namespace Zipkin
} // namespace Envoy