homebrew-core/Formula/apm-server.rb

115 lines
3.6 KiB
Ruby
Raw Normal View History

class ApmServer < Formula
desc "Server for shipping APM metrics to Elasticsearch"
homepage "https://www.elastic.co/"
url "https://github.com/elastic/apm-server/archive/v6.1.3.tar.gz"
sha256 "167820c9a2b415d5e488333f36bcd5229aafc3e2b60981ed014eae6cf3f479dd"
head "https://github.com/elastic/apm-server.git"
2017-12-01 04:36:54 +00:00
bottle do
cellar :any_skip_relocation
2018-01-30 18:32:42 +00:00
sha256 "5a1b8cf55f251a70982d48966fcb6d671a2fa5be164f0bee2d08e6a1c1903645" => :high_sierra
sha256 "82312e64aef4e4bfea658c2175369402cc5ccd0b94a8f4c356eccfb52d8a7042" => :sierra
sha256 "7749e94cae103d8a2949d15a6cdd58ecd24f81d257b548ee50f8fb76fef05340" => :el_capitan
2017-12-01 04:36:54 +00:00
end
depends_on "go" => :build
resource "virtualenv" do
url "https://files.pythonhosted.org/packages/d4/0c/9840c08189e030873387a73b90ada981885010dd9aea134d6de30cd24cb8/virtualenv-15.1.0.tar.gz"
sha256 "02f8102c2436bb03b3ee6dede1919d1dac8a427541652e5ec95171ec8adbc93a"
end
def install
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/elastic/apm-server").install buildpath.children
ENV.prepend_create_path "PYTHONPATH", buildpath/"vendor/lib/python2.7/site-packages"
resource("virtualenv").stage do
system "python", *Language::Python.setup_install_args(buildpath/"vendor")
end
ENV.prepend_path "PATH", buildpath/"vendor/bin"
cd "src/github.com/elastic/apm-server" do
system "make"
system "make", "update"
(libexec/"bin").install "apm-server"
libexec.install "_meta/kibana"
(etc/"apm-server").install Dir["apm-server*.yml"]
(etc/"apm-server").install "fields.yml"
prefix.install_metafiles
end
(bin/"apm-server").write <<~EOS
#!/bin/sh
exec #{libexec}/bin/apm-server \
-path.config #{etc}/apm-server \
-path.home #{libexec} \
-path.logs #{var}/log/apm-server \
-path.data #{var}/lib/apm-server \
"$@"
EOS
end
def post_install
(var/"lib/apm-server").mkpath
(var/"log/apm-server").mkpath
end
plist_options :manual => "apm-server"
def plist; <<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>Program</key>
<string>#{opt_bin}/apm-server</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
require "socket"
server = TCPServer.new(0)
port = server.addr[1]
server.close
(testpath/"config/apm-server.yml").write <<~EOS
apm-server:
host: localhost:#{port}
output.file:
path: "#{testpath}/apm-server"
filename: apm-server
codec.format:
string: '%{[transaction]}'
EOS
pid = fork do
exec bin/"apm-server", "-path.config", testpath/"config", "-path.data", testpath/"data"
end
sleep 1
begin
system "curl", "-H", "Content-Type: application/json", "-XPOST", "localhost:#{port}/v1/transactions", "-d",
'{"app":{"name":"app1","agent":{"name":"python","version":"1.0"}},' \
'"transactions":[{"id":"945254c5-67a5-417e-8a4e-aa29efcbfb79","name":"GET /api/types","type":"request","duration":32.592981,"timestamp":"2017-05-09T15:04:05.999999Z"}]}'
sleep 1
s = (testpath/"apm-server/apm-server").read
assert_match "\"id\":\"945254c5-67a5-417e-8a4e-aa29efcbfb79\"", s
assert_match "\"name\":\"GET /api/types\"", s
ensure
Process.kill "SIGINT", pid
Process.wait pid
end
end
end