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
write_http plugin is documented to support StoreRates option, and does try to use it:
write_http
StoreRates
Compiler warns that store_rates args is not used in format_json_metric_family(): https://github.com/collectd/collectd/blob/collectd-6.0/src/utils/format_json/format_json.c#L219
store_rates
format_json_metric_family()
write_log
false
$ git grep "format_json_metric_family *(" src/*.c src/write_http.c: format_json_metric_family(&cb->send_buffer, fam, cb->store_rates); src/write_log.c: int status = format_json_metric_family(&buf, fam, /* store rates = */ false);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behavior
write_http
plugin is documented to supportStoreRates
option, and does try to use it:Actual behavior
Compiler warns that
store_rates
args is not used informat_json_metric_family()
: https://github.com/collectd/collectd/blob/collectd-6.0/src/utils/format_json/format_json.c#L219Notes
write_http
plugin is only user of that functionality,write_log
sets itfalse
:The text was updated successfully, but these errors were encountered: