Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use newer syslog-ng configuration, simpler include mechanism. #2

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d07cd1e
work in prgress with adding forwrder deff
johntdyer Jun 27, 2012
37e36dd
Redo defintiions to add forwarder and to add ability to specify log f…
sciurus Jun 27, 2012
27f22f1
Remove most of base config since not doing system logging
sciurus Jun 27, 2012
0fccbe0
Fix syntax in definition. Allow specifying protocol for forwarder
sciurus Jun 28, 2012
1a5399d
Recipe for using syslog-ng for system logging
sciurus Jun 28, 2012
3a68b06
GLobal recipe should include default recipe
sciurus Jun 28, 2012
e9080c3
Forwarder does not need paths
sciurus Jun 28, 2012
a82f1da
Explain new definition in README
sciurus Jun 28, 2012
f9ed92e
Rename syslog_ng_app to syslog_ng_file
sciurus Jun 28, 2012
4fce9e1
Fix name in forwarder definition
sciurus Jun 28, 2012
2ac2f92
Add logfile compression
sciurus Jun 28, 2012
7948146
Bump version
sciurus Jun 28, 2012
ca69b79
Syntax fixes
sciurus Jun 28, 2012
0f83e4b
Template erb fixes
sciurus Jun 28, 2012
09e7f8a
Break source out into own definition
sciurus Jun 29, 2012
e5fe629
Allow configuring filters
sciurus Jul 2, 2012
90185c4
Merge pull request #1 from sciurus/master
johntdyer Jul 4, 2012
657d686
an obvious error in the readme
Jan 29, 2013
8971707
added name attribute to metadata.rb to avoid Ridley errors
nightw Apr 22, 2014
948ffa4
Added Ubuntu compatibility with the least possible amount of modifica…
nightw Jun 3, 2014
e693bfb
Added a workaround for Ubuntu 14.04 syslog-ng package installation
nightw Sep 26, 2014
35967b7
Revert to 89717074961f4052ce0f1a2d684632fe5f659831
dschlenk Dec 18, 2014
1a45e12
bumped version just for confusion avoidance
dschlenk Dec 18, 2014
039cf96
Change 00base to a template. Add 'chain_hostnames' option as well as an
dschlenk Dec 18, 2014
9655e14
accidentally a comma
dschlenk Dec 18, 2014
efe03fc
add a restart notification when 00base changes
dschlenk Dec 18, 2014
00a3777
move template because whoops
dschlenk Dec 18, 2014
ffee72a
too many colons
dschlenk Dec 18, 2014
e6a0af7
allow user to change the source prefix used in many definitions.
dschlenk Feb 9, 2015
4551951
force git to use LF for EOL for templates and files
Jul 13, 2015
7d51cda
Use newer syslog-ng configuration, simpler include mechanism.
WaffleSouffle Aug 26, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
templates/** text eol=lf
files/** text eol=lf
55 changes: 53 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
Description
===========

The Syslog NG cookbook installs and configures syslog-ng service.
The Syslog NG cookbook installs and configures syslog-ng service. There are two recipes

* syslog-ng enables syslog-ng but does not affect your current syslog configuration
* syslog-ng::global disables your existing syslog and configures syslog-ng to handle system logging

There are also four definitions

* syslog_ng_source configures syslog-ng to listen on a udp port
* syslog_ng_filter configures a filter
* syslog_ng_file configures syslog-ng to write logs it receives to a file
* syslog_ng_forwarder configures syslog-ng to forward logs it receives to another syslog server

The path to logfiles is generated by concatenating log_base, the application name, and log_name. When setting log_base and log_name you can use syslog-ng macros. For example, log_name could be "${YEAR}/${MONTH}/${DAY}/${HOUR}.log"

The cookbook has been written for and tested on CentOS with syslog-ng 2.1.4.
Syslog NG can be obtained [here: balabit.com](http://www.balabit.com/downloads/files?path=/syslog-ng/sources/2.1.4).

Expand All @@ -22,11 +35,32 @@ Usage
### In a cookbook:
include_recipe "syslog-ng"

syslog_ng_app application[:name] do
syslog_ng_source "source_foo" do
index "02"
host "127.0.0.1"
port "514"
end

syslog_ng_file "application_foo" do
index "03"
source_name "source_foo"
days_uncompressed "7"
log_base "/var/applogs"
log_name "default.log"
end

syslog_ng_filter "warnings" do
index "04"
filter "level(warning)"
end

syslog_ng_forwarder "application_foo_warnings" do
index "05"
source_name "source_foo"
filter_name "warnings"
destination_host "example.com"
destination_port "514"
destination_protocol "udp"
end


Expand All @@ -52,6 +86,23 @@ limitations under the License.
Changes
=======

### v 1.3.0

* Create filter definition and have file and forwarder optionally take a filter

### v 1.2.0

* Break source out into its own definition

### v 1.1.0

* adding a new definition for configuring forwarding
* renaming the defintion that writes files to make that clearer in the name
* in the definition for writing files, allow specifying file name
* in the definition for writing files, compress old log files
* moving system logging configuration from the default recipe to a new recipe


### v 1.0.0

* Initial public release
21 changes: 17 additions & 4 deletions attributes/default.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
default[:syslog_ng][:user] = "root"
default[:syslog_ng][:group] = "root"
default[:syslog_ng][:log_dir] = "/var/log/syslog-ng"
default[:syslog_ng][:config_dir] = "/etc/syslog-ng"
default[:syslog_ng][:user] = "root"
default[:syslog_ng][:group] = "root"
default[:syslog_ng][:log_dir] = "/var/log/syslog-ng"
default[:syslog_ng][:config_dir] = "/etc/syslog-ng"
default[:syslog_ng][:flush_lines] = 0
default[:syslog_ng][:time_reopen] = 10
default[:syslog_ng][:log_fifo_size] = 1000
default[:syslog_ng][:chain_hostnames] = 'off'
default[:syslog_ng][:use_dns] = 'no'
default[:syslog_ng][:use_fqdn] = 'no'
default[:syslog_ng][:create_dirs] = 'yes'
default[:syslog_ng][:keep_hostname] = 'yes'
default[:syslog_ng][:chain_hostnames] = 'yes'
default[:syslog_ng][:global_opts] = []
default[:syslog_ng][:source_prefix] = 's_udp_'
default[:syslog_ng][:syslog_ng_config_name] = 'syslog-ng.conf'
default[:syslog_ng][:syslog_ng_version] = '3.5'
40 changes: 40 additions & 0 deletions definitions/generate_syslog_ng_conf_if_missing.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#
# Cookbook Name:: syslog-ng
# Definition:: generate_syslog_ng_conf_if_missing
#
# 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.
#

define :generate_syslog_ng_conf_if_missing, :template => "syslog-ng.conf.erb" do
include_recipe "syslog-ng"

current_time = Time.now.utc
syslog_ng_version = node[:syslog_ng][:syslog_ng_version]
filepath = "#{node[:syslog_ng][:config_dir]}/#{node[:cloudhouse_syslog][:syslog_ng_config_name]}"

template filepath do
action :create_if_missing
source params[:template]
owner node[:syslog_ng][:user]
group node[:syslog_ng][:group]
mode 00640

variables(
:current_time => current_time,
:syslog_ng_version => syslog_ng_version
)

notifies :restart, resources(:service => "syslog-ng"), :immediately
end

end
82 changes: 82 additions & 0 deletions definitions/syslog_ng_file.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
#
# Cookbook Name:: syslog-ng
# Definition:: syslog_ng_file
#
# Copyright 2012, Artem Veremey
#
# 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.
#

define :syslog_ng_file, :template => "syslog_ng_file.erb" do
include_recipe "syslog-ng"


application = {
:name => params[:name],
:index => params[:index] || "02",
:cookbook => params[:cookbook] || "syslog-ng",
:source_name => params[:source_name],
:source_prefix => params[:source_prefix] || node[:syslog_ng][:source_prefix],
:days_uncompressed => params[:days_uncompressed] || 1,
:log_base => params[:log_base] || node[:syslog_ng][:log_dir],
:log_name => params[:log_name] || "default.log",
}

# filter_name is optional
if params[:filter_name]
application[:filter_name] = params[:filter_name]
end

directory "#{application[:log_base]}" do
owner node[:syslog_ng][:user]
group node[:syslog_ng][:group]
mode 00755
action :create
end

directory "#{application[:log_base]}/#{application[:name]}" do
owner node[:syslog_ng][:user]
group node[:syslog_ng][:group]
mode 00755
action :create
end

template "#{node[:syslog_ng][:config_dir]}/conf.d/#{application[:index]}#{application[:name]}" do
source params[:template]
owner node[:syslog_ng][:user]
group node[:syslog_ng][:group]
mode 00640
cookbook application[:cookbook]

if params[:cookbook]
cookbook params[:cookbook]
end

variables(
:application => application,
:params => params
)

notifies :restart, resources(:service => "syslog-ng"), :immediately
end

template "/etc/cron.daily/#{application[:name]}_compress_logs" do
source "compress_logs.erb"
cookbook application[:cookbook]
mode 0755
owner "root"
group "root"
variables( :application => application )
end

end
50 changes: 50 additions & 0 deletions definitions/syslog_ng_filter.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#
# Cookbook Name:: syslog-ng
# Definition:: syslog_ng_file
#
# Copyright 2012, Artem Veremey
#
# 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.
#

define :syslog_ng_filter, :template => "syslog_ng_filter.erb" do
include_recipe "syslog-ng"


application = {
:name => params[:name],
:index => params[:index] || "02",
:cookbook => params[:cookbook] || "syslog-ng",
:filter => params[:filter],
}

template "#{node[:syslog_ng][:config_dir]}/conf.d/#{application[:index]}#{application[:name]}" do
source params[:template]
owner node[:syslog_ng][:user]
group node[:syslog_ng][:group]
mode 00640
cookbook application[:cookbook]

if params[:cookbook]
cookbook params[:cookbook]
end

variables(
:application => application,
:params => params
)

notifies :restart, resources(:service => "syslog-ng"), :immediately
end

end
57 changes: 57 additions & 0 deletions definitions/syslog_ng_forwarder.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#
# Cookbook Name:: syslog-ng
# Definition:: syslog_ng_forwarder
#
# Copyright 2012, Artem Veremey
#
# 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.
#

define :syslog_ng_forwarder, :template => "syslog_ng_forwarder.erb" do
include_recipe "syslog-ng"

application = {
:name => params[:name],
:index => params[:index] || "02",
:cookbook => params[:cookbook] || "syslog-ng",
:source_name => params[:source_name],
:source_prefix => params[:source_prefix] || node[:syslog_ng][:source_prefix],
:destination_host => params[:destination_host],
:destination_port => params[:destination_port] || "514",
:destination_protocol => params[:destination_protocol] || "udp",
}

# filter_name is optional
if params[:filter_name]
application[:filter_name] = params[:filter_name]
end

template "#{node[:syslog_ng][:config_dir]}/conf.d/#{application[:index]}#{application[:name]}" do
source params[:template]
owner node[:syslog_ng][:user]
group node[:syslog_ng][:group]
mode 00640
cookbook application[:cookbook]

if params[:cookbook]
cookbook params[:cookbook]
end

variables(
:application => application,
:params => params
)

notifies :restart, resources(:service => "syslog-ng"), :immediately
end
end
Loading