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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Issue tracker is used for reporting bugs and discussing new features. Please use stackoverflow for supporting issues.
Adding a cmd name attribute is useful for monitoring application accessing redis, because different kinds of cmd may perform differently.
Expect adding cmd name (get/set/del etc.) in metrics attributes.
Currently, only type:command attribute is added to the metrics.
Add the following code in ProcessHook function of metricsHook.
attrs = append(attrs, attribute.String("cmd", cmd.FullName()))
The text was updated successfully, but these errors were encountered:
This issue is marked stale. It will be closed in 30 days if it is not updated.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Issue tracker is used for reporting bugs and discussing new features. Please use
stackoverflow for supporting issues.
Adding a cmd name attribute is useful for monitoring application accessing redis, because different kinds of cmd may perform differently.
Expected Behavior
Expect adding cmd name (get/set/del etc.) in metrics attributes.
Current Behavior
Currently, only type:command attribute is added to the metrics.
Possible Implementation
Add the following code in ProcessHook function of metricsHook.
attrs = append(attrs, attribute.String("cmd", cmd.FullName()))
The text was updated successfully, but these errors were encountered: