Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/chetan/puppet-flume_node

Custom Puppet resource type for configuring Flume nodes
https://github.com/chetan/puppet-flume_node

Last synced: 2 months ago
JSON representation

Custom Puppet resource type for configuring Flume nodes

Awesome Lists containing this project

README

        

Sample usage:

flume_node { $fqdn:
master => "flume-master.example.com",
source => "syslogTcp( 35852 )",
sink => "agentE2EChain( \"collector1.example.com:35853\" )",
ensure => insync,
}

Or using multiple collectors:

flume_node { $fqdn:
master => "flume-master.example.com",
source => "syslogTcp( 35852 )",
sink => "agentE2EChain" => [ "flume1.example.com:35853", "flume2.example.com:35853" ] )",
ensure => insync,
}