--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
1) Generic JVM metrics
2) Generic Akka metrics (mailbox sizes, message rates, etc.)
3) Application-specific metrics
You received this message because you are subscribed to a topic in the Google Groups "Akka User List" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/akka-user/lZ3UjPoy1go/unsubscribe.
To unsubscribe from this group and all its topics, send an email to akka-user+...@googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "Akka User List" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/akka-user/lZ3UjPoy1go/unsubscribe.
To unsubscribe from this group and all its topics, send an email to akka-user+...@googlegroups.com.
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to a topic in the Google Groups "Akka User List" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/akka-user/lZ3UjPoy1go/unsubscribe.
To unsubscribe from this group and all its topics, send an email to akka-user+...@googlegroups.com.
Chris,sorry, I didn't express myself correctly, what I wanted to say is that not having constant time .size() implementations by default doesn't mean that we shouldn't monitor mailbox sizes, but instead find a alternative, efficient way to get those numbers, which in my opinion are very important when monitoring akka actors. Glad to know you are interested in Kamon, hope you find it useful and that this answer clarifies your doubt, best regards!
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
Patrik Nordwall
Typesafe - Reactive apps on the JVM
Twitter: @patriknw
I completely agree that monitoring the queues in your system (which translates to Actor mailboxes here) is a very useful thing to do, and the reasoning for removing access to the mailbox size from the Actor itself does indeed not apply to external monitoring.
I completely agree that monitoring the queues in your system (which translates to Actor mailboxes here) is a very useful thing to do, and the reasoning for removing access to the mailbox size from the Actor itself does indeed not apply to external monitoring.Good to know! I'll look out for developments in this area.
Thanks Ivan for the information, I'll also keep an eye on kamon, which looks really cool.
Patrik, is LoggingMailbox part of any release? Or just some useful code to keep around? (I certainly will)
You received this message because you are subscribed to a topic in the Google Groups "Akka User List" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/akka-user/lZ3UjPoy1go/unsubscribe.
To unsubscribe from this group and all its topics, send an email to akka-user+...@googlegroups.com.
The LoggingMailbox has helped me debugging bottlenecks many times./Patrik
Eugene, using rxmon seems like an interesting approach, I'll keep an one on that and let you know if something comes out of it!