What Are Traces and Spans in OpenTelemetry?
oneuptime.com
What Are Traces and Spans in OpenTelemetry?
1–10 of 47 posts
Re: What Are Traces and Spans in OpenTelemetry?
#2Re: What Are Traces and Spans in OpenTelemetry?
#3Re: What Are Traces and Spans in OpenTelemetry?
#4Re: What Are Traces and Spans in OpenTelemetry?
#5Re: What Are Traces and Spans in OpenTelemetry?
#6The amount of additional code that it needs is horrible. We will now have to spend more brain juice on telemetry when working on a feature.
Re: What Are Traces and Spans in OpenTelemetry?
#7The amount of additional code that it needs is horrible. We will now have to spend more brain juice on telemetry when working on a feature.
Re: What Are Traces and Spans in OpenTelemetry?
#8OTEL as a set of standards is admirable and ambitious, though in my experience actual implementation differs significantly between different vendors and they all seem to overcomplicate it.
Re: What Are Traces and Spans in OpenTelemetry?
#9Span = an event (which is bascially just a log with an associated trace), and some data fields. Trace = a log for a request with a unique Id.
A useful thing about opentelemetry is that there's auto-instrumentation so you can get this all out-of-the-box for most JVM apps. Of course you could probably log your queries instead, so it's not necessarily a game-changer but a nice-to-have.
Also the standardization is nice.
Re: What Are Traces and Spans in OpenTelemetry?
#10The amount of additional code that it needs is horrible. We will now have to spend more brain juice on telemetry when working on a feature.