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
This block of code in the gelf.rb file seems to modify timestamp and then remove it. Looks like a bug to me. I like to see the timestamp field not dropped.
Thanks!
This block of code in the gelf.rb file seems to modify timestamp and then remove it. Looks like a bug to me. I like to see the timestamp field not dropped.
Thanks!
https://github.com/logstash-plugins/logstash-input-gelf/blob/master/lib/logstash/inputs/gelf.rb#L112
if event["timestamp"].is_a?(Numeric)
event.timestamp = LogStash::Timestamp.at(event["timestamp"])
event.remove("timestamp")
end
The text was updated successfully, but these errors were encountered: