Does Logstash has a limit size for each event-message?

后端 未结 4 2017
夕颜
夕颜 2021-01-13 17:54

I am implementing a monitoring tool on servers of my company service. To do that, I am using logstash. Our applications send their logs via a log4net udp appender to logstas

4条回答
  •  无人及你
    2021-01-13 18:16

    Logstash's property buffer_size is by default set to 8192. That's why messages sent over UDP to Logstash are truncated at 8192th symbol.

    Try increasing UDP buffer_size in Logstash.

    References:

    • https://github.com/elastic/logstash/issues/1505
    • https://github.com/elastic/logstash/issues/2111
    • http://logstash.net/docs/1.4.2/inputs/udp#buffer_size (may be outdated, check documentation version)

提交回复
热议问题