120 lines
3.7 KiB
Ruby
120 lines
3.7 KiB
Ruby
class Logstash < Formula
|
|
desc "Tool for managing events and logs"
|
|
homepage "https://www.elastic.co/products/logstash"
|
|
url "https://github.com/elastic/logstash/archive/v7.11.1.tar.gz"
|
|
sha256 "5459338bad4dd76e6dfec45e935d0676f5be4a1ec422652476654d515bcc3b2c"
|
|
license "Apache-2.0"
|
|
version_scheme 1
|
|
head "https://github.com/elastic/logstash.git"
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, big_sur: "847ead527113ab2220c3d0dedf8414f6342ef27e654fc3ad628ceb8af4674c8a"
|
|
sha256 cellar: :any, catalina: "8add2aa6e8ff0086a9bf38bc87bd5027f7290e0f39ca0faffe41049e0eca2737"
|
|
sha256 cellar: :any, mojave: "88f1c72bffc4b7c2002ac38bcbf5bd211215aa5defdae0f69ababd5c5da84829"
|
|
end
|
|
|
|
depends_on "openjdk@8"
|
|
|
|
uses_from_macos "ruby" => :build
|
|
|
|
def install
|
|
# remove non open source files
|
|
rm_rf "x-pack"
|
|
ENV["OSS"] = "true"
|
|
|
|
# Build the package from source
|
|
system "rake", "artifact:no_bundle_jdk_tar"
|
|
# Extract the package to the current directory
|
|
mkdir "tar"
|
|
system "tar", "--strip-components=1", "-xf", Dir["build/logstash-*.tar.gz"].first, "-C", "tar"
|
|
cd "tar"
|
|
|
|
inreplace "bin/logstash",
|
|
%r{^\. "\$\(cd `dirname \$\{SOURCEPATH\}`/\.\.; pwd\)/bin/logstash\.lib\.sh"},
|
|
". #{libexec}/bin/logstash.lib.sh"
|
|
inreplace "bin/logstash-plugin",
|
|
%r{^\. "\$\(cd `dirname \$0`/\.\.; pwd\)/bin/logstash\.lib\.sh"},
|
|
". #{libexec}/bin/logstash.lib.sh"
|
|
inreplace "bin/logstash.lib.sh",
|
|
/^LOGSTASH_HOME=.*$/,
|
|
"LOGSTASH_HOME=#{libexec}"
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
# Move config files into etc
|
|
(etc/"logstash").install Dir[libexec/"config/*"]
|
|
(libexec/"config").rmtree
|
|
|
|
bin.install libexec/"bin/logstash", libexec/"bin/logstash-plugin"
|
|
bin.env_script_all_files(libexec/"bin", Language::Java.overridable_java_home_env("1.8"))
|
|
end
|
|
|
|
def post_install
|
|
ln_s etc/"logstash", libexec/"config"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Configuration files are located in #{etc}/logstash/
|
|
EOS
|
|
end
|
|
|
|
plist_options manual: "logstash"
|
|
|
|
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>
|
|
<false/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/logstash</string>
|
|
</array>
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
</dict>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/logstash.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/logstash.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
# workaround https://github.com/elastic/logstash/issues/6378
|
|
(testpath/"config").mkpath
|
|
["jvm.options", "log4j2.properties", "startup.options"].each do |f|
|
|
cp prefix/"libexec/config/#{f}", testpath/"config"
|
|
end
|
|
(testpath/"config/logstash.yml").write <<~EOS
|
|
path.queue: #{testpath}/queue
|
|
EOS
|
|
(testpath/"data").mkpath
|
|
(testpath/"logs").mkpath
|
|
(testpath/"queue").mkpath
|
|
|
|
data = "--path.data=#{testpath}/data"
|
|
logs = "--path.logs=#{testpath}/logs"
|
|
settings = "--path.settings=#{testpath}/config"
|
|
|
|
output = pipe_output("#{bin}/logstash -e '' #{data} #{logs} #{settings} --log.level=fatal", "hello world\n")
|
|
assert_match "hello world", output
|
|
end
|
|
end
|