This is a Chef cookbook to manage PacketBeat.
For Production environment, always prefer the most recent release.
cookbook 'packetbeat', '~> 1.0.0'
cookbook 'packetbeat', github: 'vkhatri/chef-packetbeat', tag: 'v1.0.0'
https://github.com/vkhatri/chef-packetbeat
This cookbook was tested on Amazon & Ubuntu Linux and expected to work on other RHEL platforms.
-
packetbeat::default
- default recipe (use it for run_list) -
packetbeat::install
- install packetbeat -
packetbeat::config
- configure packetbeat
"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"
}
}
}
}
}
"default_attributes": {
"packetbeat": {
"config": {
"output": {
"logstash": {
"enabled": true,
"hosts": ["127.0.0.1:5000"],
"loadbalance": true,
"save_topology": false,
"index": "packetbeat"
}
}
}
}
}
"default_attributes": {
"packetbeat": {
"config": {
"output": {
"file": {
"enabled": true,
"path": "/tmp/packetbeat",
"filename": "packetbeat",
"rotate_every_kb": 1000,
"number_of_files": 7
}
}
}
}
}
-
default['packetbeat']['version']
(default:5.6.4
): packetbeat version -
default['packetbeat']['packages']
(default:calculated
): package dependencies -
default['packetbeat']['conf_dir']
(default:/etc/packetbeat
): packetbeat yaml configuration file directory -
default['packetbeat']['conf_file']
(default:/etc/packetbeat/packetbeat.yml
): packetbeat configuration file -
default['packetbeat']['notify_restart']
(default:true
): whether to restart packetbeat service on configuration file change -
default['packetbeat']['disable_service']
(default:false
): whether to stop and disable packetbeat service
-
default['packetbeat']['config']['device']
(default:any
): packetbeat interface device name -
default['packetbeat']['config']['protocols']
(default:{}
): packetbeat services to capture packets -
default['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
- 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.