109 lines
3.5 KiB
Ruby
109 lines
3.5 KiB
Ruby
class Influxdb < Formula
|
|
desc "Time series, events, and metrics database"
|
|
homepage "https://influxdata.com/time-series-platform/influxdb/"
|
|
url "https://github.com/influxdata/influxdb.git",
|
|
:tag => "v1.4.2",
|
|
:revision => "6d2685d1738277a1c2672fc58df7994627769be6"
|
|
head "https://github.com/influxdata/influxdb.git"
|
|
|
|
bottle do
|
|
sha256 "9b435192e9d99fae976538e39fe5b5b228b87e0f1dca945a82fbdbac0af2b411" => :high_sierra
|
|
sha256 "bb76f0040f743225f25b956556e856414605e746c277710e1ca83ba9d1f7faae" => :sierra
|
|
sha256 "931fd54b8b01494dc05362d3524b7b6979b6f682f0b63fe64c15a3db6e157a73" => :el_capitan
|
|
end
|
|
|
|
depends_on "gdm" => :build
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
influxdb_path = buildpath/"src/github.com/influxdata/influxdb"
|
|
influxdb_path.install Dir["*"]
|
|
revision = `git rev-parse HEAD`.strip
|
|
version = `git describe --tags`.strip
|
|
|
|
cd influxdb_path do
|
|
system "gdm", "restore"
|
|
system "go", "install",
|
|
"-ldflags", "-X main.version=#{version} -X main.commit=#{revision} -X main.branch=master",
|
|
"./..."
|
|
end
|
|
|
|
inreplace influxdb_path/"etc/config.sample.toml" do |s|
|
|
s.gsub! "/var/lib/influxdb/data", "#{var}/influxdb/data"
|
|
s.gsub! "/var/lib/influxdb/meta", "#{var}/influxdb/meta"
|
|
s.gsub! "/var/lib/influxdb/wal", "#{var}/influxdb/wal"
|
|
end
|
|
|
|
bin.install "bin/influxd"
|
|
bin.install "bin/influx"
|
|
bin.install "bin/influx_tsm"
|
|
bin.install "bin/influx_stress"
|
|
bin.install "bin/influx_inspect"
|
|
etc.install influxdb_path/"etc/config.sample.toml" => "influxdb.conf"
|
|
|
|
(var/"influxdb/data").mkpath
|
|
(var/"influxdb/meta").mkpath
|
|
(var/"influxdb/wal").mkpath
|
|
end
|
|
|
|
plist_options :manual => "influxd -config #{HOMEBREW_PREFIX}/etc/influxdb.conf"
|
|
|
|
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}/influxd</string>
|
|
<string>-config</string>
|
|
<string>#{HOMEBREW_PREFIX}/etc/influxdb.conf</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/influxdb.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/influxdb.log</string>
|
|
<key>SoftResourceLimits</key>
|
|
<dict>
|
|
<key>NumberOfFiles</key>
|
|
<integer>10240</integer>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"config.toml").write shell_output("#{bin}/influxd config")
|
|
inreplace testpath/"config.toml" do |s|
|
|
s.gsub! %r{/.*/.influxdb/data}, "#{testpath}/influxdb/data"
|
|
s.gsub! %r{/.*/.influxdb/meta}, "#{testpath}/influxdb/meta"
|
|
s.gsub! %r{/.*/.influxdb/wal}, "#{testpath}/influxdb/wal"
|
|
end
|
|
|
|
begin
|
|
pid = fork do
|
|
exec "#{bin}/influxd -config #{testpath}/config.toml"
|
|
end
|
|
sleep 1
|
|
output = shell_output("curl -Is localhost:8086/ping")
|
|
sleep 1
|
|
assert_match /X-Influxdb-Version:/, output
|
|
ensure
|
|
Process.kill("SIGINT", pid)
|
|
Process.wait(pid)
|
|
end
|
|
end
|
|
end
|