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.0.0.tar.gz" sha256 "3e6b7cf2ee5f52e78ae87ef04ab9dd49977c89f86a09416586896aeaea844e34" head "https://github.com/elastic/beats.git" bottle do cellar :any_skip_relocation sha256 "d79b66de0052c78c17f0dea45c2f32944263c9e463e725b562a3f6b29b6e3ed7" => :sierra sha256 "f6029c26a5db0c76cdd2b5717f049357e6dfbc533ef3517d08fcbcbb927c6b8c" => :el_capitan sha256 "b20adea11511fd33b6cb02215c77330eb4bb28b54e569f28d357a23640150885" => :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 (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