Reputation: 11
As I understand, Dynatrace does not support Service Fabric Actors.
Is there an extensibility mechanism where I could add myself? For example, can I plug myself before and after every ActorProxy call, and/or before and after every method call on an Actor?
Upvotes: 1
Views: 99
Reputation: 11470
You can build a customized ActorProxy
to add logging on the caller side.
Next, you can add some code into the Actor to add logging on the Actor side. Use OnPreActorMethodAsync
and OnPostActorMethodAsync
and some reflection to get context.
Upvotes: 0