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
Its currently not possible to send metrics to different reporters if those are not all Reporters or either CachedReports.
This does not work, as it will report values only to the reporter, but not to the cached reporter:
scope, closer := tally.NewRootScope(tally.ScopeOptions{ Prefix: "my_service", Tags: map[string]string{}, Reporter: r, CachedReporter: cr, //conflicts with above line Separator: promreporter.DefaultSeparator, }, 1*time.Second)
One Solution would be probably to emulate cachedReporter for none-cached reporter in the multi package.
The text was updated successfully, but these errors were encountered:
Hi. Any updates?
Sorry, something went wrong.
Not sure, feels like the project is getting abandoned. I have also simple open PR since a year which is not getting merged...
Are multiple reporters supported without implementing a custom reporter?
No branches or pull requests
Its currently not possible to send metrics to different reporters if those are not all Reporters or either CachedReports.
This does not work, as it will report values only to the reporter, but not to the cached reporter:
One Solution would be probably to emulate cachedReporter for none-cached reporter in the multi package.
The text was updated successfully, but these errors were encountered: