Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chetan/puppet-flume_node
- Owner: chetan
- License: bsd-2-clause
- Created: 2011-08-12T22:03:37.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-04T15:12:51.000Z (over 12 years ago)
- Last Synced: 2024-10-08T23:22:07.153Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 96.7 KB
- Stars: 11
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
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,
}