responses
We are pushing logs from file with the im_file module to logstash and then to elasticsearch. However, some of these logs only have second accuracy, and therefore not returned in order by elasticsearch when sorted by just the time. To get around this problem, we would like to add the position of the log event to a field that we store (for example beginning line number or byte offset within the source file). Is there a way I can add a separate field for this in the events pushed by nxlog, either in the input or output configuration?
Comments (1)
I tried that $EventReceivedTime, and it wouln't work for the case when the service is restarted, and lots of logs are read in at once since the $EventReceivedTime would be the same.
Statistical counters seems to be the way to go, but I was wondering what the behavior of the COUNT counter was, if I kept adding 1, and it reached MAX_INT value. Would it throw, or would it jsut rotate and start from 0 again?