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
Hi, I need few more attributes in NodeInfo and QueueInfo structures, which are available in same json responses.
In NodeInfo structure of node.go file , I need below two attributes additionally ...
ProcUsed int json:"proc_used" ProcTotal int json:"proc_total"
json:"proc_used"
json:"proc_total"
In QueueInfo structures of queue.go file, need below attribute additionally....
ActiveConsumers int64 json:"active_consumers"
json:"active_consumers"
Only these lines should be included in the code. No further changes required as we have these attributes available in response jsons.
Please do the changes and commit, so that i can use the latest package.
The text was updated successfully, but these errors were encountered:
I actually opened a PR to implement proc_used and proc_total, haven't heard back yet about merging.
Sorry, something went wrong.
@Durgababu -- attributes in my above comment were merged.
@jordanbcooper -- Yeah, i checked. Your changes are merged. But sill i need one more change to be merged. Let me create new merge request.
Below are my changes... In QueueInfo structures of queue.go file, need below attribute additionally....
Addressed in #113 and #117.
No branches or pull requests
Hi,
I need few more attributes in NodeInfo and QueueInfo structures, which are available in same json responses.
In NodeInfo structure of node.go file , I need below two attributes additionally ...
ProcUsed int
json:"proc_used"
ProcTotal int
json:"proc_total"
In QueueInfo structures of queue.go file, need below attribute additionally....
ActiveConsumers int64
json:"active_consumers"
Only these lines should be included in the code. No further changes required as we have these attributes available in response jsons.
Please do the changes and commit, so that i can use the latest package.
The text was updated successfully, but these errors were encountered: