homebrew-core/Formula/netdata.rb

129 lines
3.9 KiB
Ruby

class Netdata < Formula
desc "Diagnose infrastructure problems with metrics, visualizations & alarms"
homepage "https://netdata.cloud/"
url "https://github.com/netdata/netdata/releases/download/v1.29.3/netdata-v1.29.3.tar.gz"
sha256 "eeba8b18519a9123a3cc8b450dcd042e23a3b145a78a7017a14c47ed36d923df"
license "GPL-3.0-or-later"
livecheck do
url :stable
regex(/^v?(\d+(?:\.\d+)+)$/i)
end
bottle do
sha256 arm64_big_sur: "0568a4cafa481062063768c710c3ea924e92c95d5723720b9858dd5edc4c9cf0"
sha256 big_sur: "39521fa2e058702dd343672302389b4507088352eb07e5ec41ba6ed54747f821"
sha256 catalina: "f8faef68bd371013bb2b38d834982b0adb868efdd096eccc964ab9f562c2f3ce"
sha256 mojave: "d906de464e725959fc7006160569712bebaba1ceb09b9d96da50bb21e987df76"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "pkg-config" => :build
depends_on "json-c"
depends_on "libuv"
depends_on "lz4"
depends_on "openssl@1.1"
uses_from_macos "zlib"
on_linux do
depends_on "util-linux"
end
resource "judy" do
url "https://downloads.sourceforge.net/project/judy/judy/Judy-1.0.5/Judy-1.0.5.tar.gz"
sha256 "d2704089f85fdb6f2cd7e77be21170ced4b4375c03ef1ad4cf1075bd414a63eb"
end
def install
# We build judy as static library, so we don't need to install it
# into the real prefix
judyprefix = "#{buildpath}/resources/judy"
resource("judy").stage do
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--disable-shared", "--prefix=#{judyprefix}"
# Parallel build is broken
ENV.deparallelize do
system "make", "-j1", "install"
end
end
ENV["PREFIX"] = prefix
ENV.append "CFLAGS", "-I#{judyprefix}/include"
ENV.append "LDFLAGS", "-L#{judyprefix}/lib"
system "autoreconf", "-ivf"
args = %W[
--disable-dependency-tracking
--disable-silent-rules
--prefix=#{prefix}
--sysconfdir=#{etc}
--localstatedir=#{var}
--libexecdir=#{libexec}
--with-math
--with-zlib
--enable-dbengine
--with-user=netdata
]
on_macos do
args << "UUID_LIBS=-lc"
args << "UUID_CFLAGS=-I/usr/include"
end
on_linux do
args << "UUID_LIBS=-luuid"
args << "UUID_CFLAGS=-I#{Formula["util-linux"].opt_include}"
end
system "./configure", *args
system "make", "clean"
system "make", "install"
(etc/"netdata").install "system/netdata.conf"
end
def post_install
config = etc/"netdata/netdata.conf"
inreplace config do |s|
s.gsub!(/web files owner = .*/, "web files owner = #{ENV["USER"]}")
s.gsub!(/web files group = .*/, "web files group = #{Etc.getgrgid(prefix.stat.gid).name}")
end
(var/"cache/netdata/unittest-dbengine/dbengine").mkpath
(var/"lib/netdata/registry").mkpath
(var/"log/netdata").mkpath
(var/"netdata").mkpath
end
plist_options manual: "#{HOMEBREW_PREFIX}/sbin/netdata -D"
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>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>#{opt_sbin}/netdata</string>
<string>-D</string>
</array>
<key>WorkingDirectory</key>
<string>#{var}</string>
</dict>
</plist>
EOS
end
test do
system "#{sbin}/netdata", "-W", "set", "registry", "netdata unique id file",
"#{testpath}/netdata.unittest.unique.id",
"-W", "set", "registry", "netdata management api key file",
"#{testpath}/netdata.api.key"
end
end