This is a fairly significant change, but it should make it much easier for users to get an immediate read on how many total actors are alive in each node for each actor type.
Currently, in order to get this data developers have to subtract akka.actor.created - akka.actor.stopped, which are counters. This works well on platforms like Prometheus, but horribly in environments like Application Insights. Therefore, creating a simple gauge would solve a lot of these problems.
This is a fairly significant change, but it should make it much easier for users to get an immediate read on how many total actors are alive in each node for each actor type.
Currently, in order to get this data developers have to subtract
akka.actor.created
-akka.actor.stopped
, which are counters. This works well on platforms like Prometheus, but horribly in environments like Application Insights. Therefore, creating a simple gauge would solve a lot of these problems.