From 60a73e90de2aa1c2eaae2ebbc45dd1fb96034df2 Mon Sep 17 00:00:00 2001 From: thiagoftsm <49162938+thiagoftsm@users.noreply.github.com> Date: Thu, 27 Jun 2019 08:16:28 -0300 Subject: Easily disable alarms, by persisting the silencers configuration (#6274) * Alarms begin! * Alarms web interface comments! * Alarms web interface comments 2! * Alarms bringing Christopher work! * Alarms bringing Christopher work! * Alarms commenting code that will be rewritten! * Alarms json-c begin! * Alarms json-c end! * Alarms missed script! * Alarms fix json-c parser and change script to test LIST! * Alarms fix test script! * Alarms documentation! * Alarms script step 1! * Alarms fix script! * Alarms fix testing script and code! * Alarms missing arguments to pkg_check_modules * SSL_backend indentation! * Alarms, description in Makefile * Alarms missing extern! * Alarms compilation! * Alarms libnetdata/health! * Alarms fill library! * Alarms fill CMakeList! * Alarm fix version! * Alarm remove readme! * Alarm fix readme version! --- netdata-installer.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'netdata-installer.sh') diff --git a/netdata-installer.sh b/netdata-installer.sh index a0c3f828a4..9c4d8a76d7 100755 --- a/netdata-installer.sh +++ b/netdata-installer.sh @@ -175,6 +175,7 @@ USAGE: ${PROGRAM} [options] --libs-are-really-here If you get errors about missing zlib or libuuid but you know it is available, you might have a broken pkg-config. Use this option to proceed without checking pkg-config. --disable-telemetry Use this flag to opt-out from our anonymous telemetry progam. + --enable-json Enable to use JSON-C library instead the internal Netdata library. Netdata will by default be compiled with gcc optimization -O2 If you need to pass different CFLAGS, use something like this: @@ -222,6 +223,7 @@ while [ -n "${1}" ]; do "--disable-x86-sse") NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS//--disable-x86-sse/} --disable-x86-sse";; "--disable-telemetry") NETDATA_DISABLE_TELEMETRY=1;; "--disable-go") NETDATA_DISABLE_GO=1;; + "--enable-jsonc") NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS//--enable-jsonc/} --enable-jsonc";; "--install") NETDATA_PREFIX="${2}/netdata" shift 1 -- cgit v1.2.3