Object

kamon.instrumentation.executor

ExecutorInstrumentation

Related Doc: package executor

Permalink

object ExecutorInstrumentation

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

Type Members

  1. trait ForkJoinPoolTelemetryReader extends AnyRef

    Permalink

    Abstracts the means of reading some telemetry information from concrete executor implementations.

    Abstracts the means of reading some telemetry information from concrete executor implementations. This allows us to track the same metrics even when coming from slightly different implementations. The three cases we have seen so far where this is useful are when instrumenting: the ForkJoinPool included in the JDK (since Java 8), the one included in Scala 2.11 Library and the one shipped with Akka.

  2. class InstrumentedExecutionContext extends ExecutionContext

    Permalink

    Wraps an Execution Context and its underlying ExecutorService, if known.

    Wraps an Execution Context and its underlying ExecutorService, if known. The only purpose of wrapping is to to provide a shutdown method that can be used to clear shutdown the underlying ExecutorService and remove all the metrics related to it.

  3. class InstrumentedForkJoinPool extends ExecutorService

    Permalink

    Executor service wrapper for ForkJoin Pool executors that keeps track of submitted and completed tasks and optionally tracks the time tasks spend waiting on the underlying executor service's queue.

    Executor service wrapper for ForkJoin Pool executors that keeps track of submitted and completed tasks and optionally tracks the time tasks spend waiting on the underlying executor service's queue. This instrumented executor does some extra counting work (compared to the InstrumentedThreadPool class) because ForkJoin Pool executors do not provide submitted and completed task counters.

    The instruments used to track the pool's behavior are removed once the pool is shut down.

  4. class InstrumentedScheduledThreadPoolExecutor extends InstrumentedThreadPool with ScheduledExecutorService

    Permalink

    Executor service wrapper for ScheduledThreadPool executors that keeps track of submitted and completed tasks.

    Executor service wrapper for ScheduledThreadPool executors that keeps track of submitted and completed tasks. Since tasks submitted to this type of executor are expected to be delayed for some time we are not explicitly tracking the time-in-queue metric, nor allowing to perform context propagation (at least manually).

    The instruments used to track the pool's behavior are removed once the pool is shut down.

  5. class InstrumentedThreadPool extends ExecutorService

    Permalink

    Executor service wrapper for ThreadPool executors that keeps track of submitted and completed tasks and optionally tracks the time tasks spend waiting on the underlying executor service's queue.

    Executor service wrapper for ThreadPool executors that keeps track of submitted and completed tasks and optionally tracks the time tasks spend waiting on the underlying executor service's queue.

    The instruments used to track the pool's behavior are removed once the pool is shut down.

  6. class Settings extends AnyRef

    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. val DefaultSettings: Settings

    Permalink

    We do not perform context propagation on submit by default because the automatic instrumentation provided by this module should ensure that all interesting Runnable/Callable implementations capture a Context instance.

    We do not perform context propagation on submit by default because the automatic instrumentation provided by this module should ensure that all interesting Runnable/Callable implementations capture a Context instance. Furthermore, in many situations the current Context when a Runnable/Callable is created is different from the current context when it is submitted for execution and in most situations it is safer to assume that all Runnable/Callable should capture the current Context at the instant when they are created, not when submitted.

  5. object ForkJoinPoolTelemetryReader

    Permalink
  6. val NoExtraSettings: Settings

    Permalink

    Settings that do not enable any extra features on the instrumented executor service.

  7. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def instrument(executor: ExecutorService, telemetryReader: ForkJoinPoolTelemetryReader, name: String, extraTags: TagSet, settings: Settings): ExecutorService

    Permalink

    Creates a new instrumented ExecutorService that wraps the provided one, assuming that the wrapped executor is a form of ForkJoinPool implementation.

    Creates a new instrumented ExecutorService that wraps the provided one, assuming that the wrapped executor is a form of ForkJoinPool implementation. The instrumented executor will track all the common pool metrics and optionally, track the time spent by each task on the wrapped executor's queue.

    All metrics related to the instrumented service will have the following tags: * all of the provided extraTags (take into account that any "name" or "type" tags will be overwritten. * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  15. def instrument(executor: ExecutorService, name: String, extraTags: TagSet, settings: Settings): ExecutorService

    Permalink

    Creates a new instrumented ExecutorService that wraps the provided one.

    Creates a new instrumented ExecutorService that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala) and optionally, track the time spent by each task on the wrapped executor's queue.

    All metrics related to the instrumented service will have the following tags: * all of the provided extraTags (take into account that any "name" or "type" tags will be overwritten. * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  16. def instrument(executor: ExecutorService, name: String, extraTags: TagSet): ExecutorService

    Permalink

    Creates a new instrumented ExecutorService that wraps the provided one.

    Creates a new instrumented ExecutorService that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala). All metrics related to the instrumented service will have the following tags:

    * all of the provided extraTags (take into account that any "name" or "type" tags will be overwritten. * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  17. def instrument(executor: ExecutorService, name: String, settings: Settings): ExecutorService

    Permalink

    Creates a new instrumented ExecutorService that wraps the provided one.

    Creates a new instrumented ExecutorService that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala) and optionally, track the time spent by each task on the wrapped executor's queue.

    All metrics related to the instrumented service will have the following tags:

    * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  18. def instrument(executor: ExecutorService, name: String): ExecutorService

    Permalink

    Creates a new instrumented ExecutorService that wraps the provided one.

    Creates a new instrumented ExecutorService that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala). All metrics related to the instrumented service will have the following tags:

    * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  19. def instrumentExecutionContext(executionContext: ExecutionContext, name: String, extraTags: TagSet, settings: Settings): InstrumentedExecutionContext

    Permalink

    Creates a new instrumented ExecutionContext that wraps the provided one.

    Creates a new instrumented ExecutionContext that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala) and optionally, track the time spent by each task on the wrapped executor's queue.

    All metrics related to the instrumented service will have the following tags: * all of the provided extraTags (take into account that any "name" or "type" tags will be overwritten. * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  20. def instrumentExecutionContext(executionContext: ExecutionContext, name: String, extraTags: TagSet): InstrumentedExecutionContext

    Permalink

    Creates a new instrumented ExecutorService that wraps the provided one.

    Creates a new instrumented ExecutorService that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala). All metrics related to the instrumented service will have the following tags:

    * all of the provided extraTags (take into account that any "name" or "type" tags will be overwritten. * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  21. def instrumentExecutionContext(executionContext: ExecutionContext, name: String, settings: Settings): InstrumentedExecutionContext

    Permalink

    Creates a new instrumented ExecutionContext that wraps the provided one.

    Creates a new instrumented ExecutionContext that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala) and optionally, track the time spent by each task on the wrapped executor's queue.

    All metrics related to the instrumented service will have the following tags:

    * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  22. def instrumentExecutionContext(executionContext: ExecutionContext, name: String): InstrumentedExecutionContext

    Permalink

    Creates a new instrumented ExecutionContext that wraps the provided one.

    Creates a new instrumented ExecutionContext that wraps the provided one. The instrumented executor will track metrics for ThreadPoolExecutor and ForkJoinPool instances (both from Java and Scala). All metrics related to the instrumented service will have the following tags:

    * name: set to the provided name parameter. * type: set to "ThreadPoolExecutor" executors or "ForkJoinPool".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  23. def instrumentScheduledExecutor(executor: ScheduledExecutorService, name: String, extraTags: TagSet): ScheduledExecutorService

    Permalink

    Creates a new instrumented ScheduledExecutorService that wraps the provided one.

    Creates a new instrumented ScheduledExecutorService that wraps the provided one. The instrumented executor will track metrics for a ScheduledThreadPoolExecutor, but will not perform any context propagation nor track the time in queue metric for submitted tasks.

    All metrics related to the instrumented service will have the following tags: * all of the provided extraTags (take into account that any "name" or "type" tags will be overwritten. * name: set to the provided name parameter. * type: set to "ScheduledThreadPoolExecutor".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  24. def instrumentScheduledExecutor(executor: ScheduledExecutorService, name: String): ScheduledExecutorService

    Permalink

    Creates a new instrumented ScheduledExecutorService that wraps the provided one.

    Creates a new instrumented ScheduledExecutorService that wraps the provided one. The instrumented executor will track metrics for a ScheduledThreadPoolExecutor, but will not perform any context propagation nor track the time in queue metric for submitted tasks.

    All metrics related to the instrumented service will have the following tags: * name: set to the provided name parameter. * type: set to "ScheduledThreadPoolExecutor".

    Once the returned executor is shutdown, all related metric instruments will be removed.

  25. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped