homebrew-core/Formula/netdata.rb

111 lines
3.3 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.35.1/netdata-v1.35.1.tar.gz"
sha256 "587f6cce421015f8e0a527e3964a4de8cc17085c354498150bc3ade21606bbf9"
license "GPL-3.0-or-later"
revision 1
livecheck do
url :stable
regex(/^v?(\d+(?:\.\d+)+)$/i)
end
bottle do
sha256 arm64_monterey: "ddbbd55c14f7a4e74c83004fc3099789604b4ba34d855eb2991ebf74ef036d78"
sha256 arm64_big_sur: "42c4c505fc747892a772e44e93fa1d7264e9a6aae709f2d5f202cc1117df6fd2"
sha256 monterey: "21233f9f023623435cb23c57041557e73e33f7482f4a324f619b844fe16b79d6"
sha256 big_sur: "175839bbcabd82c52a3bb0901e8b6ff71c8610fd2e191112d4368cfe0ab64073"
sha256 catalina: "6cbb0945e002aacb602af9b80a1c8ad4a3086f8fa66fcc7ca896d456cb3fdb04"
sha256 x86_64_linux: "7eef3d153b6b62f52eed47f5ab18523534e725459926a1131335bf6908e6aa88"
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"
depends_on "protobuf-c"
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
# https://github.com/protocolbuffers/protobuf/issues/9947
ENV.append_to_cflags "-DNDEBUG"
# 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
]
if OS.mac?
args << "UUID_LIBS=-lc"
args << "UUID_CFLAGS=-I/usr/include"
else
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
(var/"cache/netdata/unittest-dbengine/dbengine").mkpath
(var/"lib/netdata/registry").mkpath
(var/"log/netdata").mkpath
(var/"netdata").mkpath
end
service do
run [opt_sbin/"netdata", "-D"]
working_dir var
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