Interface IActorTelemetryEvent
A set of events designed to provide some basic telemetry functions for monitoring actor lifecycles.
We want to track actor starts, stops, and restarts. More detailed metrics, such as mailbox size or message processing rates will require something like Phobos [https://phobos.petabridge.com/].
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public interface IActorTelemetryEvent : INoSerializationVerificationNeeded, INotInfluenceReceiveTimeout
Remarks
Not intended to be sent across network boundaries - should only be processed locally via the EventStream.
Properties
| Improve this Doc View SourceActorType
The implementation type for this actor.
Declaration
Type ActorType { get; }
Property Value
Type | Description |
---|---|
Type |
Subject
The actor who emitted this event.
Declaration
IActorRef Subject { get; }
Property Value
Type | Description |
---|---|
IActorRef |