You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to add a sampling rate to the pointcuts advices so to lower the performance hit on the monitored system.
The sampling rate needs to be configurable for:
actor selection using full actor path (akka://default/user/supervisor/$a)
actor selection using wildcard path, where * is any path element, .. is any path elements (akka://default/../supervisor)
actor selection using full actor type (akka:default.org.eignego.actors.FooActor or akka:*.org.eigengo.actors.FooActor, where * is any actor system name)
actor selection using wildcard actor type (akka:default._ :> org.eigengo.actors.FooActor)
The last point's syntax is arguably a bit hairy. It follows the Scala syntax, but we can also go for the AspectJ-style syntax: akka:default.org.eigengo.actors.FooActor+.
The text was updated successfully, but these errors were encountered:
We need to add a sampling rate to the
pointcutsadvices so to lower the performance hit on the monitored system.The sampling rate needs to be configurable for:
akka://default/user/supervisor/$a
)*
is any path element,..
is any path elements (akka://default/../supervisor
)akka:default.org.eignego.actors.FooActor
orakka:*.org.eigengo.actors.FooActor
, where*
is any actor system name)akka:default._ :> org.eigengo.actors.FooActor
)The last point's syntax is arguably a bit hairy. It follows the Scala syntax, but we can also go for the AspectJ-style syntax:
akka:default.org.eigengo.actors.FooActor+
.The text was updated successfully, but these errors were encountered: