homebrew-core/Formula/chronograf.rb
2017-09-12 02:36:00 -07:00

82 lines
2.4 KiB
Ruby

require "language/node"
class Chronograf < Formula
desc "Open source monitoring and visualization UI for the TICK stack."
homepage "https://docs.influxdata.com/chronograf/latest/"
url "https://github.com/influxdata/chronograf/archive/1.3.8.1.tar.gz"
sha256 "bfd95df17f3666fbdb8949de1f176cf12bb34f36e951da22989d77c4bcf01442"
head "https://github.com/influxdata/chronograf.git"
bottle do
cellar :any_skip_relocation
sha256 "0efce92c83e37f7c7076a8865c189ece3972592a365199ff2ffd7c6ab6ba1be9" => :sierra
sha256 "3787a0a48ac521e43505a18edd365859609f1985c552fa5cfa8fc31fa944f3d5" => :el_capitan
end
depends_on "go" => :build
depends_on "node" => :build
depends_on "yarn" => :build
depends_on "influxdb" => :recommended
depends_on "kapacitor" => :recommended
def install
ENV["GOPATH"] = buildpath
ENV.prepend_create_path "PATH", buildpath/"bin"
Language::Node.setup_npm_environment
chronograf_path = buildpath/"src/github.com/influxdata/chronograf"
chronograf_path.install buildpath.children
cd chronograf_path do
system "make", "dep"
system "make", ".jssrc"
system "make", "chronograf"
bin.install "chronograf"
end
end
plist_options :manual => "chronograf"
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/chronograf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>#{var}</string>
<key>StandardErrorPath</key>
<string>#{var}/log/chronograf.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/chronograf.log</string>
</dict>
</plist>
EOS
end
test do
begin
pid = fork do
exec "#{bin}/chronograf"
end
sleep 1
output = shell_output("curl -s 0.0.0.0:8888/chronograf/v1/")
sleep 1
assert_match %r{/chronograf/v1/layouts}, output
ensure
Process.kill("SIGINT", pid)
Process.wait(pid)
end
end
end