easy

Results 56 comments of easy

On the flip side: would it be a better approach to delay starting the span until the name is known?

Related issue: https://github.com/open-telemetry/opentelemetry-cpp/issues/6

I'm happy to replace `ExternalProject` with `FetchContent`. If you could please send a PR for this, that would be great. If v3.11 becomes a problem for people, we can (later)...

I've added rules_python in #467. Although I'm not sure if it should be in bazel/deps.bzl instead of WORKSPACE now.

@billowqiu Best practices: * Always have the correct Context installed as the "current" context. * To set a current Span, use a WithSpan object. * Treat WithSpan as RAII -...

I'm trying to document this in #224

To do this in an async way, I would suggest the server component does something like this: ```c++ void Server1(RequestFromClient req) { // Server receives trace context and tagging context...

My plan for the gRPC integration is that the gRPC plugin will take care of: * Decoding the incoming trace and tagging contexts. (trace is already implemented) * Creating a...

TraceContext format support was added in #260.

Envoy only uses abandon (true->false) for now, but in #217 we talk about a false->true transition, which might also be useful for a form of retroactive tracing. This issue is...