96 lines
3.1 KiB
Ruby
96 lines
3.1 KiB
Ruby
class Heartbeat < Formula
|
|
desc "Lightweight Shipper for Uptime Monitoring"
|
|
homepage "https://www.elastic.co/beats/heartbeat"
|
|
url "https://github.com/elastic/beats.git",
|
|
tag: "v8.3.3",
|
|
revision: "1755b5dd3127bf755ee39deb25a802438bdac620"
|
|
license "Apache-2.0"
|
|
head "https://github.com/elastic/beats.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "ee46eab539a528c8a1920d3f3d75155d64a03ac52d86cba2ad84b01f000290da"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "11e48f9934ec02e973675c115a51d689d0457fd859ec15ce5eb534b0e798f433"
|
|
sha256 cellar: :any_skip_relocation, monterey: "98a03a8e7cf75f8ab09d1d750ac0a2a4efe1590329369dd2752950190aab1543"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "dcce142175862b5e93e58a847bffd25945143917f1b5c274b965dd3968d56dd5"
|
|
sha256 cellar: :any_skip_relocation, catalina: "9b48010258d513dedcd38d2b4037e1d87e4f78a5db8a578b66f697e86e473bc5"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "331e0fb5b97011b9d11ae77e80d14af178f923ca154408ea5a329899ebf44978"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on "mage" => :build
|
|
depends_on "python@3.10" => :build
|
|
uses_from_macos "netcat" => :test
|
|
|
|
def install
|
|
# remove non open source files
|
|
rm_rf "x-pack"
|
|
|
|
cd "heartbeat" do
|
|
# prevent downloading binary wheels during python setup
|
|
system "make", "PIP_INSTALL_PARAMS=--no-binary :all", "python-env"
|
|
system "mage", "-v", "build"
|
|
ENV.deparallelize
|
|
system "mage", "-v", "update"
|
|
|
|
(etc/"heartbeat").install Dir["heartbeat.*", "fields.yml"]
|
|
(libexec/"bin").install "heartbeat"
|
|
end
|
|
|
|
(bin/"heartbeat").write <<~EOS
|
|
#!/bin/sh
|
|
exec #{libexec}/bin/heartbeat \
|
|
--path.config #{etc}/heartbeat \
|
|
--path.data #{var}/lib/heartbeat \
|
|
--path.home #{prefix} \
|
|
--path.logs #{var}/log/heartbeat \
|
|
"$@"
|
|
EOS
|
|
end
|
|
|
|
def post_install
|
|
(var/"lib/heartbeat").mkpath
|
|
(var/"log/heartbeat").mkpath
|
|
end
|
|
|
|
service do
|
|
run opt_bin/"heartbeat"
|
|
end
|
|
|
|
test do
|
|
# FIXME: This keeps stalling CI when tested as a dependent. See, for example,
|
|
# https://github.com/Homebrew/homebrew-core/pull/91712
|
|
return if OS.linux? && ENV["HOMEBREW_GITHUB_ACTIONS"].present?
|
|
|
|
port = free_port
|
|
|
|
(testpath/"config/heartbeat.yml").write <<~EOS
|
|
heartbeat.monitors:
|
|
- type: tcp
|
|
schedule: '@every 5s'
|
|
hosts: ["localhost:#{port}"]
|
|
check.send: "hello\\n"
|
|
check.receive: "goodbye\\n"
|
|
output.file:
|
|
path: "#{testpath}/heartbeat"
|
|
filename: heartbeat
|
|
codec.format:
|
|
string: '%{[monitor]}'
|
|
EOS
|
|
fork do
|
|
exec bin/"heartbeat", "-path.config", testpath/"config", "-path.data",
|
|
testpath/"data"
|
|
end
|
|
sleep 5
|
|
assert_match "hello", pipe_output("nc -l #{port}", "goodbye\n", 0)
|
|
|
|
sleep 5
|
|
output = JSON.parse((testpath/"data/meta.json").read)
|
|
assert_includes output, "first_start"
|
|
|
|
(testpath/"data").glob("heartbeat-*.ndjson") do |file|
|
|
s = JSON.parse(file.read)
|
|
assert_match "up", s["status"]
|
|
end
|
|
end
|
|
end
|