Skip to content

Commit

Permalink
Add rabbitmq module
Browse files Browse the repository at this point in the history
  • Loading branch information
TuningYourCode authored and pcfens committed Feb 18, 2024
1 parent d311ade commit 0d126ec
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
31 changes: 31 additions & 0 deletions manifests/module/rabbitmq.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# filebeat::module::rabbitmq
#
# @summary
# This class manages the Filebeat RabbitMQ module.
#
# @example
# class { 'filebeat::module::rabbitmq':
# log_enabled => true,
# log_paths => ['/var/log/rabbitmq/*.log'],
# }
#
# @param log_enabled
# Whether to enable the RabbitMQ module.
# @param log_paths
# An array of paths to the RabbitMQ log files.
#
class filebeat::module::rabbitmq (
Boolean $log_enabled = false,
Optional[Array[Stdlib::Absolutepath]] $log_paths = undef,
) {
filebeat::module { 'rabbitmq':
config => {
'log' => delete_undef_values(
{
'enabled' => $log_enabled,
'var.paths' => $log_paths,
}
),
},
}
}
54 changes: 54 additions & 0 deletions spec/classes/module/rabbitmq_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# frozen_string_literal: true

require 'spec_helper'

describe 'filebeat::module::rabbitmq' do
let :pre_condition do
'include ::filebeat'
end

let(:facts) {
{
:kernel => 'Linux',
:os => {
:family => 'Debian',
:name => 'Ubuntu',
}
}
}

context 'on default values' do
it { is_expected.to compile.with_all_deps }

it {
is_expected.to contain_file('filebeat-module-rabbitmq').with_content(
%r{- module: rabbitmq\n\s{2}log:\n\s{4}enabled: false\n\n},
)}
end

context 'on log enabled with paths' do
let(:params) do
{
'log_enabled' => true,
'log_paths' => ['/var/log/rabbitmq.log'],
}
end

it { is_expected.to compile.with_all_deps }

it {
is_expected.to contain_file('filebeat-module-rabbitmq').with_content(
<<-EOS
### Filebeat configuration managed by Puppet ###
---
- module: rabbitmq
log:
enabled: true
var.paths:
- "/var/log/rabbitmq.log"
EOS
)
}
end
end

0 comments on commit 0d126ec

Please sign in to comment.