kamon

akka

package akka

Visibility
  1. Public
  2. All

Type Members

  1. class ActorGroupMetrics extends GenericEntityRecorder

    Entity recorder for Actor Groups.

    Entity recorder for Actor Groups. The metrics being tracked are:

    • time-in-mailbox: Time spent from the instant when a message is enqueued in a actor's mailbox to the instant when that message is dequeued for processing.
    • processing-time: Time taken for the actor to process the receive function.
    • errors: Number or errors seen by the actor's supervision mechanism.
  2. class ActorMetrics extends GenericEntityRecorder

    Entity recorder for Akka Actors.

    Entity recorder for Akka Actors. The metrics being tracked are:

    • time-in-mailbox: Time spent from the instant when a message is enqueued in a actor's mailbox to the instant when that message is dequeued for processing.
    • processing-time: Time taken for the actor to process the receive function.
    • mailbox-size: Size of the actor's mailbox.
    • errors: Number or errors seen by the actor's supervision mechanism.
  3. sealed trait AskPatternTimeoutWarningSetting extends AnyRef

  4. class RouterMetrics extends GenericEntityRecorder

    Entity recorder for Akka Routers.

    Entity recorder for Akka Routers. The metrics being tracked are:

    • routing-time: Time taken for the router to process the routing logic.
    • time-in-mailbox: Time spent from the instant when a message is enqueued in a actor's mailbox to the instant when that message is dequeued for processing.
    • processing-time: Time taken for the actor to process the receive function.
    • errors: Number or errors seen by the actor's supervision mechanism.

Value Members

  1. object ActorGroupMetrics extends EntityRecorderFactoryCompanion[ActorGroupMetrics]

  2. object ActorMetrics extends EntityRecorderFactoryCompanion[ActorMetrics]

  3. object AkkaExtension

  4. object AskPatternTimeoutWarningSettings

  5. object RouterMetrics extends EntityRecorderFactoryCompanion[RouterMetrics]

Ungrouped