This is a Chef cookbook to manage Filebeat.
For Production environment, always prefer the most recent release.
cookbook 'filebeat', '~> 0.2.7'
cookbook 'filebeat', github: 'vkhatri/chef-filebeat', tag: "v0.2.7"
https://github.com/vkhatri/chef-filebeat
This cookbook was tested on Windows, Amazon & Ubuntu Linux and expected to work on other RHEL platforms.
- Removed default output configuration attributes for
elasticsearch
,logstash
andfile
- Removed attributed
default['filebeat']['enable_localhost_output']
as defaultoutput
attributes are disabled
- windows
- powershell
- apt
- yum
-
filebeat::default
- default recipe (use it for run_list) -
filebeat::install_windows
- install filebeat for windows platform -
filebeat::install_package
- install filebeat package for linux platform -
filebeat::config
- configure filebeat
LWRP filebeat_prospector
creates filebeat prospector configuration yaml file under directory node['filebeat']['prospectors_dir']
with file name prospector-#{resource_name}.yml
.
LWRP example
filebeat_prospector 'messages' do
paths ['/var/log/messages']
document_type 'apache'
ignore_older '24h'
scan_frequency '15s'
harvester_buffer_size 16384
fields 'type' => 'apacheLogs'
end
LWRP Options
- action (optional) - default :create, options: :create, :delete
- paths (optional, String) - filebeat prospector configuration attribute
- type (optional, String) - filebeat prospector configuration attribute
- encoding (optional, String) - filebeat prospector configuration attribute
- fields (optional, Hash) - filebeat prospector configuration attribute
- fields_under_root (optional, TrueClass/FalseClass) - filebeat prospector configuration attribute
- ignore_older (optional, String) - filebeat prospector configuration attribute
- document_type (optional, String) - filebeat prospector configuration attribute
- input_type (optional, String) - filebeat prospector configuration attribute
- scan_frequency (optional, String) - filebeat prospector configuration attribute
- harvester_buffer_size (optional, Integer) - filebeat prospector configuration attribute
- tail_files (optional, TrueClass/FalseClass) - filebeat prospector configuration attribute
- backoff (optional, String) - filebeat prospector configuration attribute
- max_backoff (optional, String) - filebeat prospector configuration attribute
- backoff_factor (optional, Integer) - filebeat prospector configuration attribute
- force_close_files (optional, TrueClass/FalseClass) - filebeat prospector configuration attribute
- include_lines (optional, Array) - A list of regular expressions to match the lines that you want Filebeat to include. Filebeat exports only the lines that match a regular expression in the list. By default, all lines are exported.
- exclude_lines (optional, Array) - A list of regular expressions to match the lines that you want Filebeat to exclude. Filebeat drops any lines that match a regular expression in the list. By default, no lines are dropped.
- multiline (optional, Hash) - Multiline configuration hash. Options:
pattern
: ,negate
: [true/false],match
: [before/after]
"default_attributes": {
"filebeat": {
"config": {
"output": {
"elasticsearch": {
"enabled": true,
"hosts": ["127.0.0.1:9200"],
"save_topology": false,
"max_retries": 3,
"bulk_max_size": 1000,
"flush_interval": null,
"protocol": "http",
"username": null,
"password": null,
"index": "filebeat",
"path": "/elasticsearch"
}
}
}
}
}
"default_attributes": {
"filebeat": {
"config": {
"output": {
"logstash": {
"enabled": true,
"hosts": ["127.0.0.1:5000"],
"loadbalance": true,
"save_topology": false,
"index": "filebeat"
}
}
}
}
}
"default_attributes": {
"filebeat": {
"config": {
"output": {
"file": {
"enabled": true,
"path": "/tmp/filebeat",
"filename": "filebeat",
"rotate_every_kb": 1000,
"number_of_files": 7
}
}
}
}
}
Individual prospectors configuration file can be added using attribute default['filebeat']['prospectors']
. Each prospector configuration will
be created as a different yaml file under default['filebeat']['prospector_dir']
with prefix prospector-
"default_attributes": {
"filebeat": {
"prospectors": {
"system_logs": {
"filebeat": {
"prospectors": [
{
"paths": [
"/var/log/messages",
"/var/log/syslog"
],
"type": "log",
"fields": {
"type": "system_logs"
}
}
]
}
},
"secure_logs": {
"filebeat": {
"prospectors": [
{
"paths": [
"/var/log/secure",
"/var/log/auth.log"
],
"type": "log",
"fields": {
"type": "secure_logs"
}
}
]
}
},
"apache_logs": {
"filebeat": {
"prospectors": [
{
"paths": [
"/var/log/apache/*.log"
],
"type": "log",
"ignore_older": "24h",
"scan_frequency": "15s",
"harvester_buffer_size": 16384,
"fields": {
"type": "apache_logs"
}
}
]
}
}
}
}
}
Above configuration will create three different prospector files - prospector-system_logs.yml, prospector-secure_logs.yml and prospector-apache_logs.yml
-
default['filebeat']['version']
(default:1.0.0
): filebeat version -
default['filebeat']['package_url']
(default:auto
): package url for windows installation -
default['filebeat']['conf_dir']
(default:/etc/filebeat
): filebeat yaml configuration file directory -
default['filebeat']['conf_file']
(default:/etc/filebeat/filebeat.yml
): filebeat configuration file -
default['filebeat']['notify_restart']
(default:true
): whether to restart filebeat service on configuration file change -
default['filebeat']['disable_service']
(default:false
): whether to stop and disable filebeat service -
default['filebeat']['prospectors_dir']
(default:/etc/filebeat/conf.d
): prospectors configuration file directory -
default['filebeat']['prospectors']
(default:{}
): prospectors configuration file
-
default['filebeat']['config']['filebeat']['prospectors']
(default:[]
): filebeat interface device name -
default['filebeat']['config']['filebeat']['registry_file']
(default:/var/lib/filebeat/registry
): filebeat services to capture packets -
default['filebeat']['config']['filebeat']['config_dir']
(default:node['filebeat']['prospectors_dir']
): filebeat prospectors configuration files folder -
default['filebeat']['config']['output']
(default:{}
): configure elasticsearch. logstash, file etc. output
For more attribute info, visit below links:
https://github.com/elastic/filebeat/blob/master/etc/filebeat.yml
-
default['filebeat']['yum']['description']
(default: ``): beats yum reporitory attribute -
default['filebeat']['yum']['gpgcheck']
(default:true
): beats yum reporitory attribute -
default['filebeat']['yum']['enabled']
(default:true
): beats yum reporitory attribute -
default['filebeat']['yum']['baseurl']
(default:https://packages.elastic.co/beats/yum/el/$basearch
): beatsyum reporitory attribute -
default['filebeat']['yum']['gpgkey']
(default:https://packages.elasticsearch.org/GPG-KEY-elasticsearch
): beats yum reporitory attribute -
default['filebeat']['yum']['metadata_expire']
(default:3h
): beats yum reporitory attribute -
default['filebeat']['yum']['action']
(default::create
): beats yum reporitory attribute -
default['filebeat']['apt']['description']
(default:calculated
): beats apt reporitory attribute -
default['filebeat']['apt']['components']
(default:['stable', 'main']
): beats apt reporitory attribute -
default['filebeat']['apt']['uri']
(default:https://packages.elastic.co/beats/apt
): beats apt reporitory attribute -
default['filebeat']['apt']['key']
(default:http://packages.elasticsearch.org/GPG-KEY-elasticsearch
): beats apt reporitory attribute -
default['filebeat']['apt']['action']
(default::add
): filebeat apt reporitory attribute
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write your change
- Write tests for your change (if applicable)
- Run the tests (
rake & rake knife
), ensuring they all pass - Write new resource/attribute description to
README.md
- Write description about changes to PR
- Submit a Pull Request using Github
Authors:: Virender Khatri and Contributors
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.