Skip to content

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

Notifications You must be signed in to change notification settings

parolkar/fluent-plugin-udp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages