Object/Class

com.ccadllc.cedi.dtrace

TraceSystem

Related Docs: class TraceSystem | package dtrace

Permalink

object TraceSystem extends Serializable

Source
TraceSystem.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TraceSystem
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Data(identity: Identity, meta: Meta) extends Product with Serializable

    Permalink
  2. trait Emitter[F[_]] extends AnyRef

    Permalink

    Describes how to emit the current Span and its application data (together constituting the TraceContext) to an external sink (e.g., database, JMX, log file, etc).

    Describes how to emit the current Span and its application data (together constituting the TraceContext) to an external sink (e.g., database, JMX, log file, etc).

    F

    - an effectful program type used to execute the Emitter.

  3. final case class Time(value: Long, unit: TimeUnit, source: Source) extends Product with Serializable

    Permalink

    Represents a point of time.

    Represents a point of time. Might be real-time or monotonic. The Timer generates these based on the associated cats.effect.Clock. For a Timer#Monotonic, the cats.effect.Clock#monotonic will be used; otherwise, if it is a Timer#RealTime, the cats.effect.Clock#realTime will be used.

  4. sealed abstract class Timer[F[_]] extends Product with Serializable

    Permalink

    This ADT represents a time generator using the associated cats.effect.Clock, using the asssociated java.util.concurrent.TimeUnit.

    This ADT represents a time generator using the associated cats.effect.Clock, using the asssociated java.util.concurrent.TimeUnit. The valid sub-types are Timer#Monotonic or Timer#RealTime where the cats.effect.Clock#monotonic or cats.effect.Clock#realTime functions will be used to generate a point in time, used in determining the execution time of a Span.

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 Data extends Serializable

    Permalink
  5. object Time extends Serializable

    Permalink
  6. object Timer extends Serializable

    Permalink
  7. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def monotonicTimer[F[_]](implicit arg0: Sync[F]): Timer[F]

    Permalink
  15. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  18. def realTimeTimer[F[_]](implicit arg0: Sync[F]): Timer[F]

    Permalink
  19. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped