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
I am looking to instrument our router instance with some metrics. I was able to get a hook into the prerouting context using a Rule. Is there something similar for failures?
The text was updated successfully, but these errors were encountered:
Initially, I wanted a counter for errors, as well as the counter for incoming messages. I was able to configure a gauge metrics by implementing a module that queries the poison queue on a regular interval, but I'm not sure if this is the best way to implement it.
If you have any ideas or comments, I am open to that. I am willing to help with the work if needed.
Btw, this tool is great, very helpful for us in a phase where we are transitioning from one transport to another. Thanks! :)
Hi @kjersti . I did some research and it seems that EventCounters are the way to implement such things. I will be working on adding the counters to the router. My ideas for counters are following:
Message processing time end-to-end (per each interface)
Number of messages processed
Number of retries
Number of messages moved to poison queue
Do you have any other ideas for counters that could be useful?
I am looking to instrument our router instance with some metrics. I was able to get a hook into the prerouting context using a Rule. Is there something similar for failures?
The text was updated successfully, but these errors were encountered: