115 lines
3.5 KiB
Ruby
115 lines
3.5 KiB
Ruby
class Grafana < Formula
|
|
desc "Gorgeous metric visualizations and dashboards for timeseries databases"
|
|
homepage "https://grafana.com"
|
|
url "https://github.com/grafana/grafana/archive/v8.3.3.tar.gz"
|
|
sha256 "c79e19f056b9c2fc6d29c622edfaf8aff4985cec28ea6a9e74dce5eac077e735"
|
|
license "AGPL-3.0-only"
|
|
head "https://github.com/grafana/grafana.git", branch: "main"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "ae47ab8ad0b162800cab184faba59fb7891cbe140c4473b3db35733b2169bd14"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "a73fa76c6377ad7d21f4281f8a33cf431e4e97cbb8d5d3a45908be55e6816a91"
|
|
sha256 cellar: :any_skip_relocation, monterey: "644ff85dd05fc86e22e0b6c14dc7f29e6a7fb686f2972f7bcc18bcb70f7d7660"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "ae4b1d612307bc14762c15ffbb7414747a49af216e4bb5e9738e4926780b068b"
|
|
sha256 cellar: :any_skip_relocation, catalina: "280dd88786ab7f0a0df9b43b6bc5bdd0bedab99d913f827745593d2d6b6f39f7"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "2600e34cafaf6b60f867d5c5a93003b964fdd39765b80a64f4d47ebd8b678089"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on "node" => :build
|
|
depends_on "yarn" => :build
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
on_linux do
|
|
depends_on "fontconfig"
|
|
depends_on "freetype"
|
|
end
|
|
|
|
def install
|
|
ENV["NODE_OPTIONS"] = "--max-old-space-size=4096"
|
|
system "make", "gen-go"
|
|
system "go", "run", "build.go", "build"
|
|
|
|
system "yarn", "install"
|
|
|
|
system "yarn", "build"
|
|
|
|
if OS.mac?
|
|
bin.install Dir["bin/darwin-*/grafana-cli"]
|
|
bin.install Dir["bin/darwin-*/grafana-server"]
|
|
else
|
|
bin.install "bin/linux-amd64/grafana-cli"
|
|
bin.install "bin/linux-amd64/grafana-server"
|
|
end
|
|
(etc/"grafana").mkpath
|
|
cp("conf/sample.ini", "conf/grafana.ini.example")
|
|
etc.install "conf/sample.ini" => "grafana/grafana.ini"
|
|
etc.install "conf/grafana.ini.example" => "grafana/grafana.ini.example"
|
|
pkgshare.install "conf", "public", "tools"
|
|
end
|
|
|
|
def post_install
|
|
(var/"log/grafana").mkpath
|
|
(var/"lib/grafana/plugins").mkpath
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"grafana-server",
|
|
"--config", etc/"grafana/grafana.ini",
|
|
"--homepath", opt_pkgshare,
|
|
"--packaging=brew",
|
|
"cfg:default.paths.logs=#{var}/log/grafana",
|
|
"cfg:default.paths.data=#{var}/lib/grafana",
|
|
"cfg:default.paths.plugins=#{var}/lib/grafana/plugins"]
|
|
keep_alive true
|
|
error_log_path var/"log/grafana-stderr.log"
|
|
log_path var/"log/grafana-stdout.log"
|
|
working_dir var/"lib/grafana"
|
|
end
|
|
|
|
test do
|
|
require "pty"
|
|
require "timeout"
|
|
|
|
# first test
|
|
system bin/"grafana-server", "-v"
|
|
|
|
# avoid stepping on anything that may be present in this directory
|
|
tdir = File.join(Dir.pwd, "grafana-test")
|
|
Dir.mkdir(tdir)
|
|
logdir = File.join(tdir, "log")
|
|
datadir = File.join(tdir, "data")
|
|
plugdir = File.join(tdir, "plugins")
|
|
[logdir, datadir, plugdir].each do |d|
|
|
Dir.mkdir(d)
|
|
end
|
|
Dir.chdir(pkgshare)
|
|
|
|
res = PTY.spawn(bin/"grafana-server",
|
|
"cfg:default.paths.logs=#{logdir}",
|
|
"cfg:default.paths.data=#{datadir}",
|
|
"cfg:default.paths.plugins=#{plugdir}",
|
|
"cfg:default.server.http_port=50100")
|
|
r = res[0]
|
|
w = res[1]
|
|
pid = res[2]
|
|
|
|
listening = Timeout.timeout(10) do
|
|
li = false
|
|
r.each do |l|
|
|
if /HTTP Server Listen/.match?(l)
|
|
li = true
|
|
break
|
|
end
|
|
end
|
|
li
|
|
end
|
|
|
|
Process.kill("TERM", pid)
|
|
w.close
|
|
r.close
|
|
listening
|
|
end
|
|
end
|