You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies if this is a configuration option I have missed, but I am having an issue with the HTTPJSONCollector talking to a Hystrix metrics endpoint in a Java application. It collects everything just fine, but inserts an extra dot in the collected data, regardless of whether we set the path, or how long this path is in terms of elements.
No other configuration other than enabled and url, which yields entries like this;
The Hystrix endpoint is the default configuration, as far as I know. Is this expected behaviour, an error in the data, or some mismatch between collector and endpoint?
Much more extensive than that, but the above is the basic format; all on one line, key-value pairs separated by commas, curly braces, validates as proper JSON.
Thanks!
The text was updated successfully, but these errors were encountered:
This is due to the _json_to_flat_metrics method having prefix empty on the initial call. This causes a leading dot to be added on line 49 (probably same thing with line 41).
I do not have time to put a PR in right now so feel free to submit one.
Apologies if this is a configuration option I have missed, but I am having an issue with the HTTPJSONCollector talking to a Hystrix metrics endpoint in a Java application. It collects everything just fine, but inserts an extra dot in the collected data, regardless of whether we set the
path
, or how long this path is in terms of elements.No other configuration other than
enabled
andurl
, which yields entries like this;The Hystrix endpoint is the default configuration, as far as I know. Is this expected behaviour, an error in the data, or some mismatch between collector and endpoint?
JSON data is formatted like this;
Much more extensive than that, but the above is the basic format; all on one line, key-value pairs separated by commas, curly braces, validates as proper JSON.
Thanks!
The text was updated successfully, but these errors were encountered: