Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
据我了解,Dynatrace 不支持 Service Fabric Actors。
有没有我可以添加自己的可扩展性机制?例如,我可以在每次 ActorProxy 调用之前和之后,和/或在 Actor 上的每个方法调用之前和之后插入自己吗?
您可以构建自定义 ActorProxy以在调用方添加日志记录。
ActorProxy
接下来,您可以在 Actor 中添加一些代码以在 Actor 端添加日志记录。使用OnPreActorMethodAsyncandOnPostActorMethodAsync和一些反射来获取上下文。
OnPreActorMethodAsync
OnPostActorMethodAsync