Last active
April 10, 2017 07:27
-
-
Save juanje/4818824 to your computer and use it in GitHub Desktop.
Simplified Vagrant config for setting up a logstash server with Chef solo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cookbook 'apt' | |
cookbook 'monit' | |
cookbook 'logstash', git: 'git://github.com/lusis/chef-logstash.git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat /var/log/syslog | nc 33.33.33.10 3333 | |
echo "Check your browser at http://33.33.33.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The semi-official Chef cookbook and a more complete Vagrantfile are at: | |
# https://github.com/lusis/chef-logstash | |
require 'berkshelf/vagrant' | |
Vagrant::Config.run do |config| | |
config.vm.box = "opscode-ubuntu-12.04" | |
config.vm.box_url = "https://opscode-vm.s3.amazonaws.com/vagrant/boxes/opscode-ubuntu-12.04.box" | |
config.vm.customize do |vm| | |
vm.name = 'logstash' | |
vm.memory_size = 1024 | |
end | |
config.vm.network :hostonly, '33.33.33.10' | |
config.vm.provision :chef_solo do |chef| | |
chef.run_list = %w[ | |
apt | |
java | |
monit | |
git | |
php::module_curl | |
logstash::server | |
logstash::kibana | |
] | |
chef.json = { | |
logstash: { | |
server: { | |
xms: '128m', | |
xmx: '128m', | |
enable_embedded_es: true, | |
install_rabbitmq: false, | |
ipv4_only: true, | |
inputs: [ | |
tcp: { | |
type: "linux-syslog", | |
format: "plain", | |
port: "3333" | |
} | |
], | |
}, | |
kibana: { | |
language: 'php' | |
} | |
} | |
} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment