Skip to content

parolkar/fluent-plugin-udp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

*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

gem install fluent-plugin-udp
 <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

About

This fluent input plugin allows you to collect incoming events over UDP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages