Object/Class

kamon.trace

Span

Related Docs: class Span | package trace

Permalink

object Span

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Span
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract class Delayed extends Span

    Permalink

    A Span representing an operation that will not start processing immediately after the Span is created but rather when the start method is called.

    A Span representing an operation that will not start processing immediately after the Span is created but rather when the start method is called. Additionally to a regular Span, a Delayed Span will automatically track the wait time metric and add a "span.started" mark on the Span when the Start method is called. The three relevant instants when working with Delayed Spans are:

    Created |=====================| <- Wait Time |====================================================| <- Elapsed Time |==============================| <- Processing Time Started Finished

    Unless metrics tracking is disabled, a Delayed Span will track the "span.wait-time" metric with the time between creating and starting the Span, and the "span.elapsed-time" tracking the time between creating and finishing the Span. The "span.processing-time" remains the same, tracking the time between starting and finishing the Span.

  2. case class Finished(id: Identifier, trace: Trace, parentId: Identifier, operationName: String, hasError: Boolean, wasDelayed: Boolean, from: Instant, to: Instant, kind: Kind, position: Position, tags: TagSet, metricTags: TagSet, marks: Seq[Mark], links: Seq[Link]) extends Product with Serializable

    Permalink

    Represents a Span that has already been finished and should be exposed to the SpanReporters.

  3. sealed abstract class Kind extends AnyRef

    Permalink

    Describes the kind of operation being represented by a Span.

  4. case class Link(kind: Link.Kind, trace: Trace, spanId: Identifier) extends Product with Serializable

    Permalink

    Represents a connection between two different Spans that might belong to different traces.

  5. final class Local extends Delayed

    Permalink

    A writable Span created on this process and implementing all the capabilities defined by the Span interface.

  6. case class Mark(instant: Instant, key: String) extends Product with Serializable

    Permalink

    Represents an event that happens at a given instant and is related to a Span.

    Represents an event that happens at a given instant and is related to a Span. The key is a unique identifier of the type of event being associated.

  7. sealed abstract class Position extends AnyRef

    Permalink

    Describes a Span's position within the trace they belong to.

  8. final case class Remote(id: Identifier, parentId: Identifier, trace: Trace) extends Span with Product with Serializable

    Permalink

    A immutable, no-op Span that holds information from a Span that was initially created in another process and then transferred to this process.

    A immutable, no-op Span that holds information from a Span that was initially created in another process and then transferred to this process. This is the minimal representation of a Span that gets transferred through Context propagation channels. A remote Span completely ignores all writes made to it.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Empty extends Span

    Permalink

    A immutable, no-op Span that can be used to signal that there is no Span information.

    A immutable, no-op Span that can be used to signal that there is no Span information. An empty Span completely ignores all writes made to it.

  5. val Key: Key[Span]

    Permalink

    Key used to store and retrieve Span instances from the Context

  6. object Kind

    Permalink
  7. object Link extends Serializable

    Permalink
  8. object Local

    Permalink
  9. object MarkKeys

    Permalink
  10. object Metrics

    Permalink

    Metrics tracked by the Span implementation.

  11. object Position

    Permalink
  12. object TagKeys

    Permalink

    Tag keys used by the implementations to record Span and metric tags.

  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped