We're trying to use Logstash to process messages from Kafka and output them to multiple sinks. However, Logstash seems to default to adding some fields to the event such as @version, @timestamp, @source (or host?), etc.
How do I configure Logstash to process messages as-is without adding anything of its own?
In other words, I don't want Logstash to bother about the format or condition of the message, I just want it to listen to input sources and send it to output sinks.
Is that possible with Logstash?