p

kamon

akka

package akka

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class ActorGroupMetrics extends GenericEntityRecorder

    Entity recorder for Actor Groups.

    Entity recorder for Actor Groups. Sums across all actors in the Actor Group. The metrics being tracked are:

    • time-in-mailbox: Time spent from the instant when a message is enqueued in an 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.
    • actors: Number of actors that have been created.
    • mailbox-size: Size of the actor's mailbox.
    • errors: Number of 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 an 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 of 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 an 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 ActorGroupConfig
  2. object ActorGroupMetrics extends EntityRecorderFactoryCompanion[ActorGroupMetrics]
  3. object ActorMetrics extends EntityRecorderFactoryCompanion[ActorMetrics]
  4. object AkkaExtension
  5. object AskPatternTimeoutWarningSettings
  6. object RouterMetrics extends EntityRecorderFactoryCompanion[RouterMetrics]

Ungrouped