Showing with 9 additions and 4 deletions.
  1. +6 −1 CHANGELOG.md
  2. +1 −1 metadata.json
  3. +2 −2 templates/prospector5.yml.erb
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ Changelog
=========

## Unreleased
[Full Changelog](https://github.com/pcfens/puppet-filebeat/compare/v0.7.4...HEAD)
[Full Changelog](https://github.com/pcfens/puppet-filebeat/compare/v0.8.2...HEAD)

## [v0.8.1](https://github.com/pcfens/puppet-filebeat/tree/v0.8.2)
[Full Changelog](https://github.com/pcfens/puppet-filebeat/compare/v0.8.1...v0.8.2)

- Correctly set document type for v5 prospectors [\51](https://github.com/pcfens/puppet-filebeat/pull/51)

## [v0.8.1](https://github.com/pcfens/puppet-filebeat/tree/v0.8.1)
[Full Changelog](https://github.com/pcfens/puppet-filebeat/compare/v0.8.0...v0.8.1)
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pcfens-filebeat",
"version": "0.8.1",
"version": "0.8.2",
"author": "pcfens",
"license": "Apache-2.0",
"summary": "A module to install and manage the filebeat log shipper",
Expand Down
4 changes: 2 additions & 2 deletions templates/prospector5.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ filebeat:
<%- if @ignore_older -%>
ignore_older: <%= @ignore_older %>
<%- end -%>
<%- if @real_doc_type -%>
document_type: <%= @real_doc_type %>
<%- if @doc_type -%>
document_type: <%= @doc_type %>
<%- end -%>
<%- if @scan_frequency -%>
scan_frequency: <%= @scan_frequency %>
Expand Down