homebrew-core/Formula/loki.rb

74 lines
2.2 KiB
Ruby

class Loki < Formula
desc "Horizontally-scalable, highly-available log aggregation system"
homepage "https://grafana.com/loki"
url "https://github.com/grafana/loki/archive/v1.5.0.tar.gz"
sha256 "bd32bb96db1f8d90fa8c7f5473fbff4048364b8b8a0c9fdcd21155f6a062689d"
license "Apache-2.0"
bottle do
cellar :any_skip_relocation
sha256 "7b78d2ef8029eb8e2eab32e64c037117b85e43168e7be63d831d7c8bce3c663f" => :catalina
sha256 "42b11227b46d0ca2a063cb661a54f7772f82c9758cb4ce313cc9802db60ed9fc" => :mojave
sha256 "794ac7093a0abe7310a49c35f101e407d94433d35b70495a50d8ebee596bfe1c" => :high_sierra
end
depends_on "go" => :build
def install
cd "cmd/loki" do
system "go", "build", *std_go_args
inreplace "loki-local-config.yaml", "/tmp", var
etc.install "loki-local-config.yaml"
end
end
plist_options manual: "loki -config.file=#{HOMEBREW_PREFIX}/etc/loki-local-config.yaml"
def plist
<<~EOS
<?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}/loki</string>
<string>-config.file=#{etc}/loki-local-config.yaml</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>#{var}</string>
<key>StandardErrorPath</key>
<string>#{var}/log/loki.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/loki.log</string>
</dict>
</plist>
EOS
end
test do
port = free_port
cp etc/"loki-local-config.yaml", testpath
inreplace "loki-local-config.yaml" do |s|
s.gsub! "3100", port.to_s
s.gsub! var, testpath
end
fork { exec bin/"loki", "-config.file=loki-local-config.yaml" }
sleep 3
output = shell_output("curl -s localhost:#{port}/metrics")
assert_match "log_messages_total", output
end
end