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
- Host: GitHub
- URL: https://github.com/parolkar/fluent-plugin-udp
- Owner: parolkar
- Created: 2012-05-10T14:23:03.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-05-10T14:25:35.000Z (almost 14 years ago)
- Last Synced: 2025-01-01T20:09:46.885Z (over 1 year ago)
- Language: Ruby
- Size: 153 KB
- Stars: 6
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.rdoc
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