homebrew-core/Formula/telegraf.rb
2018-04-17 01:34:39 -07:00

76 lines
2.5 KiB
Ruby

class Telegraf < Formula
desc "Server-level metric gathering agent for InfluxDB"
homepage "https://influxdata.com"
url "https://github.com/influxdata/telegraf/archive/1.6.0.tar.gz"
sha256 "fb4087823d0bbc83c04eebfe4a3c0ad595de457afec5f4adaa1b796b25af614d"
head "https://github.com/influxdata/telegraf.git"
bottle do
cellar :any_skip_relocation
sha256 "08f42cef3a9412d0bc97aaaf73058d17efc07fd14b589eca604394816ff81a3a" => :high_sierra
sha256 "4af5ac4a6fd0d6985189fa9ce697b1fec249cbd53d1ed6368fa38a0f32a26705" => :sierra
sha256 "648272db709387ab0ee3a2c0e3ab22997e0fdba6184f93cdd85bcf85549ac66b" => :el_capitan
end
depends_on "gdm" => :build
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
dir = buildpath/"src/github.com/influxdata/telegraf"
dir.install buildpath.children
cd dir do
system "gdm", "restore"
system "go", "install", "-ldflags", "-X main.version=#{version}", "./..."
prefix.install_metafiles
end
bin.install "bin/telegraf"
etc.install dir/"etc/telegraf.conf" => "telegraf.conf"
end
def post_install
# Create directory for additional user configurations
(etc/"telegraf.d").mkpath
end
plist_options :manual => "telegraf -config #{HOMEBREW_PREFIX}/etc/telegraf.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}/telegraf</string>
<string>-config</string>
<string>#{etc}/telegraf.conf</string>
<string>-config-directory</string>
<string>#{etc}/telegraf.d</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>#{var}</string>
<key>StandardErrorPath</key>
<string>#{var}/log/telegraf.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/telegraf.log</string>
</dict>
</plist>
EOS
end
test do
(testpath/"config.toml").write shell_output("#{bin}/telegraf -sample-config")
system "#{bin}/telegraf", "-config", testpath/"config.toml", "-test",
"-input-filter", "cpu:mem"
end
end