HP BL460
- 48 Gb Memory
- 2 x X5675 @ 3.07GHz
- 2 x 10 gbps NIC
- 2tb NetApp NFS volume for ES data
| # These instructions are derived from the Passenger documentation, | |
| # http://www.modrails.com/documentation/Users%20guide%20Apache.html#deploying_rack_to_sub_uri | |
| # And tested with kibana git master on 1/28/13 | |
| # First, create a symlink from the existing virtualhost's | |
| # document root to your kibana installation's public/static | |
| # directory. for example, | |
| # ln -s /path/to/kibana/public /var/www/kibana | |
| # kibana 0.2.0 and earlier will have a /static directory | |
| # instead of /public |
| define elastic_template($host='localhost', $port='9200', $prefix='', $require=undef) { | |
| $es_templ = "${name}-template.json" | |
| file { "/tmp/${es_templ}": | |
| ensure => present, | |
| source => "puppet:///modules/${module_name}/${prefix}${es_templ}", | |
| require => $require, | |
| } | |
| $es_locn = "http://${host}:${port}/_template/${name}" | |
| exec { "curl -s -XPUT ${es_locn} -d @/tmp/${es_templ}": |
| # remove stopped containers | |
| docker rm $(docker ps -a -q) | |
| # remove untagged images | |
| docker rmi $(docker images | grep "^<none>" | awk "{print $3}") |
| hist = log --all --graph --pretty='[%C(cyan)%h%Creset]%C(bold cyan)%d%Creset %s' |
| diff --git a/logstash.gemspec b/logstash.gemspec | |
| index dbc88ed..ec7cf22 100644 | |
| --- a/logstash.gemspec | |
| +++ b/logstash.gemspec | |
| @@ -39,6 +39,7 @@ Gem::Specification.new do |gem| | |
| # gem.add_runtime_dependency "jar-dependencies", [">= 0.1.2"] #(MIT license) | |
| gem.add_runtime_dependency "ruby-maven" #(EPL license) | |
| + gem.add_runtime_dependency "maven-tools", "= 1.0.5" | |
| gem.add_runtime_dependency "minitar" |