Graylog2 / Graylog2/graylog2-server
Pass _id from RawMessage to Message
- Dominant language
- Java
- Stars
- 8.1k
- Forks
- 1.1k
- Avg merge
- 1d 20h
- Merged PRs (30d)
- 217
Description
When creating a Message from a RawMessage we throw away the already existing UUID (`_id`) and create a new one.
This is unneccessary and makes it impossible to track down messages that are logging an error during the early input processing.
See for example:
https://github.com/Graylog2/graylog2-server/blob/master/graylog2-server/src/main/java/org/graylog2/inputs/codecs/GelfCodec.java#L152
https://github.com/Graylog2/graylog2-server/blob/master/graylog2-server/src/main/java/org/graylog2/plugin/journal/RawMessage.java#L68
https://github.com/Graylog2/graylog2-server/blob/master/graylog2-server/src/main/java/org/graylog2/plugin/Message.java#L315
Contributor guide
Assessment
This issue has not been assessed yet.