1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-19 20:20:35 +00:00
Generic Puppet module to manage Fluentd
Go to file
Jan Krause 31a92b59eb pin dependency modules in fixtures
also increases apt dependency
2015-12-09 16:04:47 +01:00
examples added examples to examples folder 2015-12-07 13:23:41 +01:00
files added fluentd::config 2015-11-30 17:17:54 +01:00
lib/puppet/provider/package added fluentd_gem provider 2015-12-01 17:56:16 +01:00
manifests minor changes 2015-12-09 16:04:28 +01:00
spec plugin_spec 2015-12-04 13:28:06 +01:00
templates added fluentd::match definition 2015-12-01 14:19:18 +01:00
.fixtures.yml pin dependency modules in fixtures 2015-12-09 16:04:47 +01:00
.gitignore initial commit 2015-11-30 12:23:28 +01:00
.travis.yml change travis build notification 2015-12-09 14:24:28 +01:00
CHANGELOG.md increased stdlib dependency 2015-12-08 11:50:23 +01:00
Gemfile initial commit 2015-11-30 12:23:28 +01:00
LICENSE prepared release 0.1.0 2015-12-07 18:35:59 +01:00
metadata.json pin dependency modules in fixtures 2015-12-09 16:04:47 +01:00
Rakefile initial commit 2015-11-30 12:23:28 +01:00
README.md added version badge to README.md 2015-12-07 18:51:12 +01:00

wywygmbh/fluentd Puppet Module

GitHub version Build Status

Table of Contents

  1. Description
  2. Setup - The basics of getting started with fluentd
  3. Usage
  1. Limitations - OS compatibility, etc.
  2. Development - Guide for contributing to the module
  3. License

Description

The fluentd module sets up fluentd (td-agent) and manages configuration files.

This module only supports fluentd from version 2.

Setup

This will install the latest version of fluentd

include '::fluentd'

Usage

By default this module doesn't configure any sources, matches or filters. The section below describes how to configure these.

Configuration

Source

::fluentd::source { 'test':
  priority => 10,
  config   => {
    'type'   => 'tail',
    'format' => 'json',
    'path'   => '/var/log/test-application/*.json',
    'tag'    => 'application.test'
  }
}

creates:

/etc/td-agent/conf.d/10-source-test.conf
<source>
  type tail
  format json
  path /var/log/test-application/*.json
  tag application.test
</source>

Filter

::fluentd::filter { 'test':
  priority => 20,
  pattern  => '*.test',
  config   => {
    'type'   => 'record_transformer',
    'record' => {
      'hostname' => '${hostname}'
    }
  }
}

creates:

/etc/td-agent/conf.d/20-filter-test.conf
<filter *.test>
  type record_transformer
  <record>
    hostname ${hostname}
  </record>
</filter>

Match

::fluentd::match { 'test':
  priority => 30,
  pattern  => '*.test',
  config   => {
    'flush_interval' => '30s',
    'type'           => 'secure_forward',
    'secure'         => 'yes',
    'shared_key'     => 'my_shared_key',
    'self_hostname'  => 'instance.test.com',
    'ca_cert_path'   => '/path/to/ca.cert',
    'servers'        => {
      'host' => 'test.server.com'
    }
  }
}

creates:

/etc/td-agent/conf.d/30-match-test.conf
<match *.test>
  flush_interval 30s
  type secure_forward
  secure yes
  shared_key my_shared_key
  self_hostname instance.test.com
  ca_cert_path /path/to/ca.cert
  <servers>
    host test.server.com
  </servers>
</match>

Plugin Installation

This module gives you the possibility to install plugins as gem or files.

gem installation

::fluentd::plugin { 'fluent-plugin-elasticsearch':
  type => 'gem'
}

file installation

::fluentd::plugin { 'fluent-plugin-elasticsearch':
  type   => 'file',
  source => 'puppet:///path/to/plugin'
}

Requirements

Modules:

  • puppetlabs/apt >= 1.8.0 < 3.0.0

Limitations

This module has been built on and tested against Puppet 3.7.5 and higher.

The module has been tested on:

  • Ubuntu 12.04

Testing on other platforms has been light and cannot be guaranteed.

Development

Running the test suite

To run the tests install the ruby dependencies with bundler and execute rake:

bundle install --path vendor/bundle
bundle exec rake spec
bundle exec rake lint

License

Copyright 2015 wywy GmbH

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

This Puppet module is being actively maintained by some fellow puppeteers at wywy GmbH.