class Filebeat < Formula desc "File harvester to ship log files to Elasticsearch or Logstash" homepage "https://www.elastic.co/products/beats/filebeat" url "https://github.com/elastic/beats/archive/v5.2.1.tar.gz" sha256 "8cd082583c9762314c3a15c8847a8b155733e04db328a8f759a0bf7acc17ec7d" head "https://github.com/elastic/beats.git" bottle do cellar :any_skip_relocation sha256 "b084a5cf2ed8e1cf7e1ac5bff80dbba0e156a0304acaf6fc7cdf4518a4e2bfce" => :sierra sha256 "346c824b4d4e2e27480b4268a0ad50075659bde6fdc5374556dd3ee5d554cfab" => :el_capitan sha256 "aebac06c6cdc6b12065ae7a57ace44bddce5e6a71c1ae461e1ac4cbc8b0fbb00" => :yosemite end depends_on "go" => :build def install gopath = buildpath/"gopath" (gopath/"src/github.com/elastic/beats").install Dir["{*,.git,.gitignore}"] ENV["GOPATH"] = gopath cd gopath/"src/github.com/elastic/beats/filebeat" do system "make" libexec.install "filebeat" (etc/"filebeat").install("filebeat.yml", "filebeat.template.json", "filebeat.template-es2x.json") end prefix.install_metafiles gopath/"src/github.com/elastic/beats" (bin/"filebeat").write <<-EOS.undent #!/bin/sh exec #{libexec}/filebeat -path.config #{etc}/filebeat -path.home #{prefix} -path.logs #{var}/log/filebeat -path.data #{var}/filebeat $@ EOS end plist_options :manual => "filebeat" def plist; <<-EOS.undent Label #{plist_name} Program #{opt_bin}/filebeat RunAtLoad EOS end test do log_file = testpath/"test.log" touch log_file (testpath/"filebeat.yml").write <<-EOS.undent filebeat: prospectors: - paths: - #{log_file} scan_frequency: 0.1s filebeat.idle_timeout: 0.1s output: file: path: #{testpath} EOS (testpath/"log").mkpath (testpath/"data").mkpath filebeat_pid = fork { exec "#{bin}/filebeat -c #{testpath}/filebeat.yml -path.config #{testpath}/filebeat -path.home=#{testpath} -path.logs #{testpath}/log -path.data #{testpath}" } begin sleep 1 log_file.append_lines "foo bar baz" sleep 5 assert File.exist? testpath/"filebeat" ensure Process.kill("TERM", filebeat_pid) end end end