Closed jursonovicst closed 7 years ago
This, indeed, is a good one :smile: Guess this will lead to a pull request @lucashenning some time "soon".
Some not thought of parsing things, hopefully to find a more correct solution.
Thanks for finding this!
@jursonovicst is this fixed with the new version and can be closed?
@gandalfb Yes, you may close this issue, v0.5.2 is working as expected.
Thank you for your help!
T.
Hi there,
Here is another one! I try to extend our logs with geoip information, so I am using the following config:
, where the %{ip} field holds the IP address of the client. It is working well for ipv4 addresses, but if a request comes with ipv6 then an exception is logged in logstash:
[ip] = "2003:5e:4c43:c0a9:c885:6468:a4b4:4feb"
debug output (
bin/logstash --debug -f ...
):I think the issue might be the colons in the URL (
http://10.0.0.1:8080/GeoDirectoryServer-7.2.0/v1/ipinfo/2003:5e:4c43:c0a9:c885:6468:a4b4:4feb
).Of course, if I do URL Encoding with the following workarround:
, then it is working well, just I find there additional lines awkward.
Would you consider checking, why these colons are triggering exceptions?
KR Tamás