We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be possible to add in exchange stats as gauge counters to this as well?
eg: message_stats: { publish: 0, publish_details: { rate: 0 }, publish_in: 5696, publish_in_details: { rate: 0 }, publish_out: 5696, publish_out_details: { rate: 0 }, ack: 0, ack_details: { rate: 0 }, deliver_get: 0, deliver_get_details: { rate: 0 }, confirm: 0, confirm_details: { rate: 0 }, return_unroutable: 0, return_unroutable_details: { rate: 0 }, redeliver: 0, redeliver_details: { rate: 0 } },
I doubt the rate would be needed, since it can be calculated, but I would definitely find those stats useful as well.
The text was updated successfully, but these errors were encountered:
Hi,
I've checked it. It is possible. Pull Requests are always welcome :)
I will try it if I have a little bit more time.
BR
Sorry, something went wrong.
Sounds good. :)
I'm not a go expert which is why I put the request in initially, but if I get the gumption/time, I'll poke at it as well.
Thanks!
added exchange metrics. Some refactoring was done to remove duplicate…
3b169d7
…d code. closes #10 Signed-off-by: Kris Budde <[email protected]>
55fc8f7
kbudde
No branches or pull requests
Would it be possible to add in exchange stats as gauge counters to this as well?
eg: message_stats: {
publish: 0,
publish_details: {
rate: 0
},
publish_in: 5696,
publish_in_details: {
rate: 0
},
publish_out: 5696,
publish_out_details: {
rate: 0
},
ack: 0,
ack_details: {
rate: 0
},
deliver_get: 0,
deliver_get_details: {
rate: 0
},
confirm: 0,
confirm_details: {
rate: 0
},
return_unroutable: 0,
return_unroutable_details: {
rate: 0
},
redeliver: 0,
redeliver_details: {
rate: 0
}
},
I doubt the rate would be needed, since it can be calculated, but I would definitely find those stats useful as well.
The text was updated successfully, but these errors were encountered: