cookbook 'packetbeat', '= 0.2.2'
packetbeat (12) Versions 0.2.2 Follow1
Installs/Configures Elastic Packetbeat
cookbook 'packetbeat', '= 0.2.2', :supermarket
knife supermarket install packetbeat
knife supermarket download packetbeat
packetbeat Cookbook
This is a Chef cookbook to manage PacketBeat.
For Production environment, always prefer the most recent release.
Most Recent Release
cookbook 'packetbeat', '~> 0.2.2'
From Git
cookbook 'packetbeat', github: 'vkhatri/chef-packetbeat'
Repository
https://github.com/vkhatri/chef-packetbeat
Supported OS
This cookbook was tested on Amazon & Ubuntu Linux and expected to work on other RHEL platforms.
Recipes
packetbeat::default
- default recipe (use it for run_list)packetbeat::install
- install packetbeatpacketbeat::config
- configure packetbeat
How to Add Packetbeat Output via Node Attribute
ElasticSearch Output
"default_attributes": {
"packetbeat": {
"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": "packetbeat",
"path": "/elasticsearch"
}
}
}
}
}
Logstash Output
"default_attributes": {
"packetbeat": {
"config": {
"output": {
"logstash": {
"enabled": true,
"hosts": ["127.0.0.1:5000"],
"loadbalance": true,
"save_topology": false,
"index": "packetbeat"
}
}
}
}
}
File Output
"default_attributes": {
"packetbeat": {
"config": {
"output": {
"file": {
"enabled": true,
"path": "/tmp/packetbeat",
"filename": "packetbeat",
"rotate_every_kb": 1000,
"number_of_files": 7
}
}
}
}
}
Core Attributes
default['packetbeat']['version']
(default:1.0.1
): packetbeat versiondefault['packetbeat']['packages']
(default:calculated
): package dependenciesdefault['packetbeat']['conf_dir']
(default:/etc/packetbeat
): packetbeat yaml configuration file directorydefault['packetbeat']['conf_file']
(default:/etc/packetbeat/packetbeat.yml
): packetbeat configuration filedefault['packetbeat']['notify_restart']
(default:true
): whether to restart packetbeat service on configuration file changedefault['packetbeat']['disable_service']
(default:false
): whether to stop and disable packetbeat service
Configuration File packetbeat.yml Attributes
default['packetbeat']['config']['device']
(default:any
): packetbeat interface device namedefault['packetbeat']['config']['protocols']
(default:{}
): packetbeat services to capture packetsdefault['packetbeat']['config']['output']
(default:{}
): packetbeat output configuration attributes
For more attribute info, visit below links:
https://github.com/elastic/packetbeat/blob/master/etc/packetbeat.yml
Packetbeat YUM/APT Repository Attributes
default['packetbeat']['yum']['description']
(default: ``): beats yum reporitory attributedefault['packetbeat']['yum']['gpgcheck']
(default:true
): beats yum reporitory attributedefault['packetbeat']['yum']['enabled']
(default:true
): beats yum reporitory attributedefault['packetbeat']['yum']['baseurl']
(default:https://packages.elastic.co/beats/yum/el/$basearch
): beatsyum reporitory attributedefault['packetbeat']['yum']['gpgkey']
(default:https://packages.elasticsearch.org/GPG-KEY-elasticsearch
): beats yum reporitory attributedefault['packetbeat']['yum']['metadata_expire']
(default:3h
): beats yum reporitory attributedefault['packetbeat']['yum']['action']
(default::create
): beats yum reporitory attributedefault['packetbeat']['apt']['description']
(default:calculated
): beats apt reporitory attributedefault['packetbeat']['apt']['components']
(default:['stable', 'main']
): beats apt reporitory attributedefault['packetbeat']['apt']['uri']
(default:https://packages.elastic.co/beats/apt
): beats apt reporitory attributedefault['packetbeat']['apt']['key']
(default:http://packages.elasticsearch.org/GPG-KEY-elasticsearch
): beats apt reporitory attributedefault['packetbeat']['apt']['action']
(default::add
): packetbeat apt reporitory attribute
Contributing
- 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
Copyright & License
Authors:: Virender Khatri and Contributors
<pre>
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.
</pre>
Dependent cookbooks
yum >= 0.0.0 |
apt >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
packetbeat CHANGELOG
This file is used to list changes made in each version of the packetbeat cookbook.
0.2.2
Virender Khatri - #23, add yum_repository resource attribute metadata_expiry
Virender Khatri - #22, update to beats v1.0.1
Virender Khatri - #20, add output configuration example
0.2.1
Virender Khatri - #18, major changes to support repository package install
Virender Khatri - #19, fix kitchen test
0.2.0
Virender Khatri - #9, disable default['packetbeat']['config']['output']['elasticsearch']['hosts']
Virender Khatri - #10, ignore service restart on config change on disable_service
Virender Khatri - #11, remove dumy file packetbeat.yml
Jose Alberto - bump Packetbeat verion to 1.0.0 rc2
Jose Alberto - adapt attributes to new breaking changes
Jose Alberto - change defaults no more outputs by default
Virender Khatri - #14, update package_url to auto
Virender Khatri - #15, ubuntu packetbeat.yml package file conflict issue during upgrade
Virender Khatri -#16, added spec
Virender Khatri - #17, added 32bit platform support
0.1.8
Virender Khatri - #8, optional attribute to stop and disable the service
Virender Khatri - #7, update version to beta3
Virender Khatri - #6, update default attriutes for new protocol support in beta3 release
0.1.5
Virender Khatri - issue #5, bump packetbeat version to 1.0.0-beta2
Virender Khatri - issue #4, separate attributes file for config
Virender Khatri - issue #3, notify packetbeat service on config change
Virender Khatri - issue #2, default[packetbeat][notify_restart] default value must be true
Virender Khatri - issue #1, save_topology default value set to true
Virender Khatri - added more default config parameters info to config attribute file
Virender Khatri - fixed typo and updated README
0.1.0
- Virender Khatri - Initial release of packetbeat
Check the Markdown Syntax Guide for help with Markdown.
The Github Flavored Markdown page describes the differences between markdown on github and standard markdown.
Foodcritic Metric
0.2.2 passed this metric
0.2.2 passed this metric