112 lines
3.4 KiB
Ruby
112 lines
3.4 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.1.4.tar.gz"
|
|
sha256 "722e7f4f1d26b9c32acbacc7c5976614e2397bcdcce9b3fcf9049164d5eca222"
|
|
license "AGPL-3.0-only"
|
|
head "https://github.com/grafana/grafana.git", branch: "main"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "4d2af927d0fd57feadeb748556da92fb1f365f76305ed06160e624473d4a922b"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "d484e304e569231bd6784e1cbaaaff9b423123c0dbfca19e01390341e308dc57"
|
|
sha256 cellar: :any_skip_relocation, catalina: "6c7e883b8e203fb47dafb664ee8eeb1e0e24db19e2cc2d49435183f30e8558be"
|
|
sha256 cellar: :any_skip_relocation, mojave: "aafba8f42d14003838579c013519c12130ebbdc6aa94c3fd5166291891aaba5c"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "abb3b6b38d64bb44ff918610d6f87bf3a6ebb0a5ce49076b70f3bad2cfbe3e19"
|
|
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
|
|
system "go", "run", "build.go", "build"
|
|
|
|
system "yarn", "install", "--ignore-engines", "--network-concurrency", "1"
|
|
|
|
system "node_modules/webpack/bin/webpack.js", "--config", "scripts/webpack/webpack.prod.js"
|
|
|
|
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
|