Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 1.37 KB

File metadata and controls

32 lines (18 loc) · 1.37 KB

Syslog Supplier

Syslog supplier that produces both TCP and UDP based syslog events. The Supplier uses the TcpSyslogReceivingChannelAdapter and UdpSyslogReceivingChannelAdapter from Spring Integration. This supplier gives you a reactive stream of messages and the supplier has a signature of Supplier<Flux<Message<?>>>. Users have to subscribe to this Flux and receive the data.

Beans for injection

The SyslogSupplierConfiguration provides the following bean:

syslogSupplier

You need to inject this as Supplier<Flux<Message<?>>>.

You can use syslogSupplier as a qualifier when injecting.

Once injected, you can use the get method of the Supplier to invoke it and then subscribe to the returned Flux.

Configuration Options

All configuration properties are prefixed with syslog.supplier.

For more information on the various options available, please see SyslogSupplierProperties.

Tests

See this test suite for the various ways, this supplier is used.

Other usage

See this README where this supplier is used to create a Spring Cloud Stream application where it makes a Syslog Source.