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
Have the ability to Enable / Disable actors to monitor, maybe sensible to have this feature in a config file. There may be some refactoring done here to ensure this actor disabling / enabling is clean throughout the pointcuts.
By default included and excluded are empty, where empty included implies everything is included and empty excluded implies nothing is excluded. As soon as you specify an entry for included and excluded, the usual system first checks whether an actor is included; if so, checks whether it is not excluded. If both tests pass, the system then proceeds to record the counters and gauges.
Configure the included and excluded elements in the akka child of the org.eigengo.monitor.agent config.
Have the ability to Enable / Disable actors to monitor, maybe sensible to have this feature in a config file. There may be some refactoring done here to ensure this actor disabling / enabling is clean throughout the pointcuts.
By default
included
andexcluded
are empty, where emptyincluded
implies everything is included and emptyexcluded
implies nothing is excluded. As soon as you specify an entry forincluded
andexcluded
, the usual system first checks whether an actor is included; if so, checks whether it is not excluded. If both tests pass, the system then proceeds to record the counters and gauges.Configure the
included
andexcluded
elements in theakka
child of theorg.eigengo.monitor.agent
config.Syntax for the
included
andexcluded
elements is one of:akka://actor-system-name/user/concrete/path
specific path in a specific actor system
akka://*/user/concrete/path
specific path in any actor system
akka://*/user/*/any-child
any actor system name, with actor name matching
user
/ any /any-child
akka:actor-system-name.com.foo.BarActor
specific actor type (
com.foo.BarActor
) in a specific actor system (actor-system-name
)akka:*.com.foo.BarActor
specific actor type (
com.foo.BarActor
) in a any actor systemThe text was updated successfully, but these errors were encountered: