class Metricbeat < Formula desc "Collect metrics from your systems and services." homepage "https://www.elastic.co/products/beats/metricbeat" url "https://github.com/elastic/beats/archive/v5.4.0.tar.gz" sha256 "d236f9433d48b69cc2f0bf3617f17d5f2eec261acee96cc28d8b72be84afc0a7" head "https://github.com/elastic/beats.git" bottle do cellar :any_skip_relocation sha256 "29eac77db263feff2f4b6a02158a5c69c3cb53ed0526cc50d720c936c3c87c62" => :sierra sha256 "3e5b55b11d6e533a15fbb825546d26394c2d3e61825092db6d63dd440d0dc2fc" => :el_capitan sha256 "5f0f0dd11bf9a2413771ad801aef7a70732e4e81d4bfdd9a094fc81d63ae7e10" => :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/metricbeat" do system "make" libexec.install "metricbeat" (etc/"metricbeat").install "metricbeat.yml" (etc/"metricbeat").install "metricbeat.template.json" (etc/"metricbeat").install "metricbeat.template-es2x.json" end (bin/"metricbeat").write <<-EOS.undent #!/bin/sh exec "#{libexec}/metricbeat" --path.config "#{etc}/metricbeat" --path.home="#{prefix}" --path.logs="#{var}/log/metricbeat" --path.data="#{opt_prefix}" "$@" EOS end plist_options :manual => "metricbeat" def plist; <<-EOS.undent Label #{plist_name} Program #{opt_bin}/metricbeat RunAtLoad EOS end test do (testpath/"metricbeat.yml").write <<-EOS.undent metricbeat.modules: - module: system metricsets: ["load"] period: 1s output.file: enabled: true path: #{testpath}/data filename: metricbeat EOS (testpath/"logs").mkpath (testpath/"data").mkpath metricbeat_pid = fork do exec bin/"metricbeat", "-c", testpath/"metricbeat.yml", "--path.data=#{testpath}/data", "--path.logs=#{testpath}/logs" end begin sleep 2 assert File.exist? testpath/"data/metricbeat" ensure Process.kill("TERM", metricbeat_pid) end end end