Kind

object Kind
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Kind.type

Type members

Classlikes

case object Client extends Kind

The Span represents an operation on the initiating side of a request/response interaction. For example, instrumentation on a HTTP client library will most likely generate a Span with kind=client that represents the outgoing HTTP requests that it sends to other parties.

The Span represents an operation on the initiating side of a request/response interaction. For example, instrumentation on a HTTP client library will most likely generate a Span with kind=client that represents the outgoing HTTP requests that it sends to other parties.

case object Consumer extends Kind

The Span represents an operation that consumes messages from a message broker.

The Span represents an operation that consumes messages from a message broker.

case object Internal extends Kind

The Span represents an internal operation that doesn't imply communication communication with any external services. For example, if there is an interesting block of code that affects the processing of a bigger operation, it might be useful to create an internal Span that represents it so that the time spent on it will be shown on traces and related metrics.

The Span represents an internal operation that doesn't imply communication communication with any external services. For example, if there is an interesting block of code that affects the processing of a bigger operation, it might be useful to create an internal Span that represents it so that the time spent on it will be shown on traces and related metrics.

case object Producer extends Kind

The Span represents an operation the produces a message placed on a message broker.

The Span represents an operation the produces a message placed on a message broker.

case object Server extends Kind

The Span represents an operation on the receiving side of a request/response interaction. For example, instrumentation on a HTTP server will most likely create a Span with kind=server that represents the operations it processes.

The Span represents an operation on the receiving side of a request/response interaction. For example, instrumentation on a HTTP server will most likely create a Span with kind=server that represents the operations it processes.

case object Unknown extends Kind

The Span represents an unknown operation kind.

The Span represents an unknown operation kind.

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror