API/Code
editAPI/Code
editUse the span API to manually create spans for methods of interest. The API is extremely flexible, and offers the ability to customize your spans, by adding labels to them, or by changing the type, name, or timestamp.
OpenTracing fan? You can use the OpenTracing API, instead of the Agent API, to manually create spans.
How to create spans with the span API
edit-
Get the current span with
currentSpan()
, which may or may not have been created with auto-instrumentation. -
Create a child span with
startSpan()
. -
Activate the span with
activate()
. - Customize the span with the span API.
import co.elastic.apm.api.ElasticApm; import co.elastic.apm.api.Span; Span parent = ElasticApm.currentSpan(); Span span = parent.startSpan(); try (Scope scope = span.activate()) { span.setName("SELECT FROM customer"); span.addLabel("foo", "bar"); // do your thing... } catch (Exception e) { span.captureException(e); throw e; } finally { span.end(); }
Get current span |
|
Create a child span |
|
Make this span the active span on the current thread |
|
Override the default span name |
|
Add labels to the span |
Combine with annotations
editYou can combine annotations with the span API to increase their flexibility. Just get the current span on an annotated method and customize the span to your liking.