class Opentsdb < Formula desc "Scalable, distributed Time Series Database" homepage "http://opentsdb.net/" url "https://github.com/OpenTSDB/opentsdb/releases/download/v2.3.1/opentsdb-2.3.1.tar.gz" sha256 "4dba914a19cf0a56b1d0cc22b4748ebd0d0136e633eb4514a5518790ad7fc1d1" bottle do cellar :any_skip_relocation sha256 "a6b9311bccbf95f6117413ef081f3eb6d52f50fec4f9b1829cf4440e119cafc7" => :high_sierra sha256 "4933e90ddc979787f2e477ecefcd36e5075c33cc91a5a88f5d4ddec49dfc3b8f" => :sierra sha256 "440446c0474ce94a7c4724de2971cef50786285c636d32f1dea9f2164dccbb5d" => :el_capitan end depends_on "hbase" depends_on :java => "1.8" depends_on "lzo" depends_on "gnuplot" => :optional def install system "./configure", "--disable-silent-rules", "--prefix=#{prefix}", "--mandir=#{man}", "--sysconfdir=#{etc}", "--localstatedir=#{var}/opentsdb" system "make" bin.mkpath (pkgshare/"static/gwt/opentsdb/images/ie6").mkpath system "make", "install" env = { :HBASE_HOME => Formula["hbase"].opt_libexec, :COMPRESSION => "LZO", } env = Language::Java.java_home_env("1.8").merge(env) create_table = pkgshare/"tools/create_table_with_env.sh" create_table.write_env_script pkgshare/"tools/create_table.sh", env create_table.chmod 0755 inreplace pkgshare/"etc/opentsdb/opentsdb.conf", "/usr/share", "#{HOMEBREW_PREFIX}/share" etc.install pkgshare/"etc/opentsdb" (pkgshare/"plugins/.keep").write "" (bin/"start-tsdb.sh").write <<~EOS #!/bin/sh exec "#{opt_bin}/tsdb" tsd \\ --config="#{etc}/opentsdb/opentsdb.conf" \\ --staticroot="#{opt_pkgshare}/static/" \\ --cachedir="#{var}/cache/opentsdb" \\ --port=4242 \\ --zkquorum=localhost:2181 \\ --zkbasedir=/hbase \\ --auto-metric \\ "$@" EOS (bin/"start-tsdb.sh").chmod 0755 libexec.mkpath bin.env_script_all_files(libexec, env) end def post_install (var/"cache/opentsdb").mkpath system "#{Formula["hbase"].opt_bin}/start-hbase.sh" begin sleep 2 system "#{pkgshare}/tools/create_table_with_env.sh" ensure system "#{Formula["hbase"].opt_bin}/stop-hbase.sh" end end plist_options :manual => "#{HOMEBREW_PREFIX}/opt/opentsdb/bin/start-tsdb.sh" def plist; <<~EOS KeepAlive OtherJobEnabled #{Formula["hbase"].plist_name} Label #{plist_name} ProgramArguments #{opt_bin}/start-tsdb.sh WorkingDirectory #{HOMEBREW_PREFIX} StandardOutPath #{var}/opentsdb/opentsdb.log StandardErrorPath #{var}/opentsdb/opentsdb.err EOS end test do cp_r (Formula["hbase"].opt_libexec/"conf"), testpath inreplace (testpath/"conf/hbase-site.xml") do |s| s.gsub! /(hbase.rootdir.*)\n.*/, "\\1\nfile://#{testpath}/hbase" s.gsub! /(hbase.zookeeper.property.dataDir.*)\n.*/, "\\1\n#{testpath}/zookeeper" end ENV["HBASE_LOG_DIR"] = testpath/"logs" ENV["HBASE_CONF_DIR"] = testpath/"conf" ENV["HBASE_PID_DIR"] = testpath/"pid" system "#{Formula["hbase"].opt_bin}/start-hbase.sh" begin sleep 2 system "#{pkgshare}/tools/create_table_with_env.sh" tsdb_err = "#{testpath}/tsdb.err" tsdb_out = "#{testpath}/tsdb.out" tsdb_daemon_pid = fork do $stderr.reopen(tsdb_err, "w") $stdout.reopen(tsdb_out, "w") exec("#{bin}/start-tsdb.sh") end sleep 15 begin pipe_output("nc localhost 4242 2>&1", "put homebrew.install.test 1356998400 42.5 host=webserver01 cpu=0\n") system "#{bin}/tsdb", "query", "1356998000", "1356999000", "sum", "homebrew.install.test", "host=webserver01", "cpu=0" ensure Process.kill(9, tsdb_daemon_pid) end ensure system "#{Formula["hbase"].opt_bin}/stop-hbase.sh" end end end