Class

kamon.trace.Span

Remote

Related Doc: package Span

Permalink

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

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.

Linear Supertypes
Serializable, Serializable, Product, Equals, Span, Operation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Remote
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Span
  7. Operation
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Remote(id: Identifier, parentId: Identifier, trace: Trace)

    Permalink

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. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def doNotTrackMetrics(): Span

    Permalink

    Disables tracking of metrics for this Span.

    Disables tracking of metrics for this Span.

    Definition Classes
    RemoteSpan
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def fail(errorMessage: String, cause: Throwable): Span

    Permalink

    Marks the operation represented by this Span as failed and adds the provided message as a Span tag using the "error.message" key and optionally adds the "error.stacktrace" Span tag with the stack trace from the provided throwable.

    Marks the operation represented by this Span as failed and adds the provided message as a Span tag using the "error.message" key and optionally adds the "error.stacktrace" Span tag with the stack trace from the provided throwable. See the "kamon.trace.include-error-stacktrace" setting for more information.

    Definition Classes
    RemoteSpan
  9. def fail(cause: Throwable): Span

    Permalink

    Marks the operation represented by this Span as failed and optionally adds the "error.stacktrace" Span tag with the stack trace from the provided throwable.

    Marks the operation represented by this Span as failed and optionally adds the "error.stacktrace" Span tag with the stack trace from the provided throwable. See the "kamon.trace.include-error-stacktrace" setting for more information.

    Definition Classes
    RemoteSpan
  10. def fail(errorMessage: String): Span

    Permalink

    Marks the operation represented by this Span as failed and adds the provided message as a Span tag using the "error.message" key.

    Marks the operation represented by this Span as failed and adds the provided message as a Span tag using the "error.message" key.

    Definition Classes
    RemoteSpan
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def finish(at: Instant): Unit

    Permalink

    Finishes this Span using the provided finish instant.

    Finishes this Span using the provided finish instant. Even though it is possible to call any of the methods that modify/write information on the Span, once it is finished no further changes are taken into account.

    Definition Classes
    RemoteSpan
  13. def finish(): Unit

    Permalink

    Finishes this Span.

    Finishes this Span. Even though it is possible to call any of the methods that modify/write information on the Span, once it is finished no further changes are taken into account.

    Definition Classes
    RemoteSpan
  14. def finishAfter(duration: Duration): Unit

    Permalink

    Finishes this Span using the provided duration.

    Finishes this Span using the provided duration. Even though it is possible to call any of the methods that modify/write information on the Span, once it is finished no further changes are taken into account.

    Definition Classes
    RemoteSpan
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. val id: Identifier

    Permalink

    Uniquely identifies this Span within the Trace.

    Uniquely identifies this Span within the Trace.

    Definition Classes
    RemoteSpan
  17. def isEmpty: Boolean

    Permalink

    Returns true if this Span is a placeholder because no Span information is available.

    Returns true if this Span is a placeholder because no Span information is available.

    Definition Classes
    RemoteSpan
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def isRemote: Boolean

    Permalink

    Returns true if this Span was initially created in another process and then transferred to this process.

    Returns true if this Span was initially created in another process and then transferred to this process.

    Definition Classes
    RemoteSpan
  20. def kind: Kind

    Permalink

    Returns the kind of operation represented by this Span.

    Returns the kind of operation represented by this Span.

    Definition Classes
    RemoteSpan
  21. def link(span: Span, kind: Link.Kind): Span

    Permalink

    Creates a link between this Span and the provided one.

    Creates a link between this Span and the provided one.

    Definition Classes
    RemoteSpan
  22. def mark(key: String, at: Instant): Span

    Permalink

    Adds a new mark with the provided key and instant.

    Adds a new mark with the provided key and instant.

    Definition Classes
    RemoteSpan
  23. def mark(key: String): Span

    Permalink

    Adds a new mark with the provided key using the current instant from Kamon's clock.

    Adds a new mark with the provided key using the current instant from Kamon's clock.

    Definition Classes
    RemoteSpan
  24. def name(name: String): Span

    Permalink

    Changes the operation name on this Span.

    Changes the operation name on this Span. Even though it is possible (and sometimes necessary) to change the operation name in a Span, take into account that the operation name might be captured by child Spans when parent operation scoping is enabled and any updates done after the child spans read the operation name will not be reflected on the "parentOperation" tag.

    Definition Classes
    RemoteSpan
  25. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  28. def operationName(): String

    Permalink

    Returns the current operation name for this Span.

    Returns the current operation name for this Span.

    Definition Classes
    RemoteSpanOperation
  29. val parentId: Identifier

    Permalink

    Identifier for the parent of this this Span, if any.

    Identifier for the parent of this this Span, if any. If a Span has no parent (e.g. it is the first Span in the trace) then an empty identifier is returned.

    Definition Classes
    RemoteSpan
  30. def position(): Position

    Permalink

    Returns the position of this Span in the trace to which it belongs.

    Returns the position of this Span in the trace to which it belongs.

    Definition Classes
    RemoteSpan
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def tag(tagSet: TagSet): Span

    Permalink

    Adds all key/value pairs in the provided tags to the Span tags.

    Adds all key/value pairs in the provided tags to the Span tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  33. def tag(key: String, value: Boolean): Span

    Permalink

    Adds the provided key/value pair to the Span tags.

    Adds the provided key/value pair to the Span tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  34. def tag(key: String, value: Long): Span

    Permalink

    Adds the provided key/value pair to the Span tags.

    Adds the provided key/value pair to the Span tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  35. def tag(key: String, value: String): Span

    Permalink

    Adds the provided key/value pair to the Span tags.

    Adds the provided key/value pair to the Span tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  36. def tagMetrics(tagSet: TagSet): Span

    Permalink

    Adds all key/value pairs in the provided tags to the Span metric tags.

    Adds all key/value pairs in the provided tags to the Span metric tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  37. def tagMetrics(key: String, value: Boolean): Span

    Permalink

    Adds the provided key/value pair to the Span metric tags.

    Adds the provided key/value pair to the Span metric tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  38. def tagMetrics(key: String, value: Long): Span

    Permalink

    Adds the provided key/value pair to the Span metric tags.

    Adds the provided key/value pair to the Span metric tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  39. def tagMetrics(key: String, value: String): Span

    Permalink

    Adds the provided key/value pair to the Span metric tags.

    Adds the provided key/value pair to the Span metric tags. If a tag with the provided key was already present then its value will be overwritten.

    Definition Classes
    RemoteSpan
  40. def takeSamplingDecision(): Span

    Permalink

    Makes the Span decide for a Sample or DoNotSample decision for the Trace it belongs to, in case the current that the current Sampling Decision is Unknown.

    Makes the Span decide for a Sample or DoNotSample decision for the Trace it belongs to, in case the current that the current Sampling Decision is Unknown. If the Sampling Decision is already taken, calling this method will have no effect on the Span.

    Definition Classes
    RemoteSpan
  41. def toString(): String

    Permalink
    Definition Classes
    Remote → AnyRef → Any
  42. val trace: Trace

    Permalink

    Trace to which this Span belongs.

    Trace to which this Span belongs.

    Definition Classes
    RemoteSpan
  43. def trackMetrics(): Span

    Permalink

    Enables tracking of metrics for this Span.

    Enables tracking of metrics for this Span. For a plain Span, this means that the span.processing-time metric will be tracked and for a Delayed Span, the span.elapsed-time and span.wait-time metrics will be tracked as well.

    Definition Classes
    RemoteSpan
  44. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Span

Inherited from Operation

Inherited from AnyRef

Inherited from Any

Ungrouped