You are viewing documentation for an outdated version. Do you wish to see documentation for the latest version?
Tracing is all about describing operations executed by your services and the causal relationship between them. In
tracing, the main building block are Spans. A Span
represents a single operation and contains enough information to
determine the trace to which it belongs, how long it took to complete and which Span is its parent. Spans can
additionally have tags and marks that better describe the operations’ semantics and effects on the system.
Once you put all related Spans together it is possible to reconstruct the entire trace of a request. You can think of a trace as a picture of what needed to happen for a request to be processed by your system. That story will usually be represented by something that like this:
There are several conclusions that can be drawn from the graph above, without even looking at the code:
/users
endpoint of this system.Spans are created by calling the buildSpan(operationName)
method on Kamon’s companion object as shown below:
// Minimal Span start/finish cycle
val span = Kamon.buildSpan("find-users").start()
// Do your operation here.
span.finish()
The buildSpan(operationName)
method will return a SpanBuilder
instance that can be used to customize the Span to a
certain degree and only after calling the .start()
method on it the actual Span
instance is created.
asChildOf(span)
or ignoreParentFromContext()
on the SpanBuilder.SpanBuilder
instance is not thread-safe and should not be passed around threads.Tags are key-value pairs that provide additional information about the operation represented by a Span. All spans created by Kamon will typically have the following tags:
component
specifies what library/framework instrumentation generated the Span. E.g: akka.http.server
or jdbc
.span.kind
specifies the role of the Span in an RPC communication. In the case of HTTP communication you will be
seeing client
and server
values for this tag.error
specifies whether an error has been added to the Span via span.addError(...)
.http.method
specifies the request’s HTTP method.http.url
specifies the request’s URL.Take a look at the instrumentation guidelines for a more comprehensive list of tags that you can expect to see on
Kamon-generated Spans. Tags can be added on a SpanBuilder
or Span
instance. Once a Span as been finished tags can
no longer be added.
// Adding tags to the SpanBuilder
val span = Kamon.buildSpan("find-users")
.withTag("string-tag", "hello")
.withTag("number-tag", 42)
.withTag("boolean-tag", true)
.start()
// Adding tags to the Span.
span
.tag("other-string-tag", "bye")
.tag("other-number-tag", 24)
.tag("other-boolean-tag", false)
// After this point no tags can be added.
span.finish()
Marks are timestamped labels on Spans. Marks can provide additional information regarding events that happen while an
operation is in progress. Marks like dequeued
for the moment when a message was taken out of a queue for processing or
connected
once a database connection has been established are good examples.
In Kamon, marks do not have any specific format requirements other than being a string. You are encouraged to use simple, short and concise names for marks but you are free to add anything you would like in there.
val span = Kamon.buildSpan("span-with-marks").start()
// Adding marks to the Span.
span
.mark("message.dequeued")
.mark(at = Instant.now(), "This could be free text")
// After this point no marks can be added.
span.finish()
By default Kamon will track metrics out of all Spans, unless explicitly disabled. Span metrics are not affected by
sampling, every single Span is going to be measured and recorded, regardless of whether the Span is sampled or not. The
metric tracking Spans’ latency is called span.processing-time
and at a minimum will have these tags:
operation
with the Span operation name.error
specifying whether an error was added to the Span via span.addError(...)
.parentOperation
with the name of the operation of the parent Span, if any.span.tagMetric(...)
.Important: It is of extreme importance that a Span’s operation name and any metric-related tags are not populated with high cardinality values; things like user or session identifiers, SQL queries or full URLs should not be used for operation names and metric tags because an individual time series will be created for each unique combination of these attributes.
If necessary, metrics collection can be toggled by calling enableMetrics()
and disableMetrics()
on a SpanBuilder
or Span
instance. Calling these functions will only have effect until the Span is finished.
// Starting a Span and disabling metrics
val span = Kamon.buildSpan("span-metrics")
.withMetricTag("component", "netty.server")
.disableMetrics()
.start()
// Enabling metrics for a Span
span
.enableMetrics()
.tagMetric("algorithm", "expensive_algorithm")
// After this point no further changes can be made.
span.finish()
The tracer relies on Kamon’s Context to store the Span representing the currently executing operation. At any moment
the current Span can be accessed either by retrieving it from the current Context or by using the Kamon.currentSpan()
function, the later is just a shorthand syntax for the former.
// Both of these expressions return the same Span
val spanFromContext = Kamon.currentContext().get(Span.ContextKey)
val spanFromHelper = Kamon.currentSpan()
Most of the time Spans will be automatically managed by Kamon; Kamon will determine when to start and finish a Span and
when to make it part of the current Context (and thus, make it the current Span). In cases where it is necessary to
manually set a Span as the current Span, the Kamon.withSpan(...)
helper function can be used:
val span = Kamon.buildSpan("operation").start()
// Set as current Span
Kamon.withSpan(span) {
// Our span is the current Span here
}
// Set as current Span and finish.
Kamon.withSpan(Kamon.buildSpan("one-off").start(), finishSpan = true) {
// Our one-off Span is the current Span here
}
In the code snippet above the Spans are set as the current Span only while the blocks of code provided to
Kamon.withSpan(...)
are executing, right after that the current Span will be whatever it was before. Under the hood
what is actually exchanged is the current Context, which in turn dictates the current Span. Please refer to the Context
section to get a better understanding of how this mechanism works.
Keep in mind that setting a Span as current has no effect on the Span’s lifecycle. A Span can be made current several
times in several threads at the same time regardless of it being finished or not. There is an overload of the
Kamon.withSpan(...)
method that allows finishing the Span after closing the scope in which it was used as shown above,
this is provided as a shorthand syntax for cases where a quick, one-off Span is needed, but it must remain clear that
finish a Span’s time as current has nothing to do with actually .finish()
ing the Span.