An open API service indexing awesome lists of open source software.

https://github.com/parolkar/fluent-plugin-udp

This fluent input plugin allows you to collect incoming events over UDP
https://github.com/parolkar/fluent-plugin-udp

Last synced: 8 months ago
JSON representation

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

Awesome Lists containing this 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


type udp
bind
port

For submitting events, if you are using Ruby then you could use this:


require "socket"
UDPSocket.new.send("{\"tag\":\"tagname\",\"key\":\"value\"}", 0, 'hostname', 1234)

== Copyright

Copyright:: Copyright (c) 2012 Abhishek Parolkar
License:: MIT License