No commit activity in last 3 years
No release in over 3 years
This input plugin allows you to collect incoming events over UDP instead of TCP
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 0.10.7
 Project Readme

UDP input plugin for Fluent event collector¶ ↑

Overview¶ ↑

*This input plugin allows you to collect incoming events over UDP instead of TCP. It is useful because UDP does not require ACK hence the transaction is completed fasted than TCP

Installation¶ ↑

gem install fluent-plugin-udp

Configuration¶ ↑

 <source>
   type udp
   bind <bind_ip>
   port <binding_udp_port>
 </source>

For submitting events, if you are using Ruby then you could use this: 
<pre>
 require "socket"
 UDPSocket.new.send("{\"tag\":\"tagname\",\"key\":\"value\"}", 0, 'hostname', 1234)
</pre>
Copyright

Copyright © 2012 Abhishek Parolkar

License

MIT License