summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--build/m4/ax_c___atomic.m436
-rw-r--r--build_external/scenarios/aclk-testing/agent_netdata.conf26
-rw-r--r--build_external/scenarios/gaps_lo/mostly_off.conf1
3 files changed, 0 insertions, 63 deletions
diff --git a/build/m4/ax_c___atomic.m4 b/build/m4/ax_c___atomic.m4
deleted file mode 100644
index dd5ee3d1c..000000000
--- a/build/m4/ax_c___atomic.m4
+++ /dev/null
@@ -1,36 +0,0 @@
-# AC_C___ATOMIC
-# -------------
-# Define HAVE_C___ATOMIC if __atomic works.
-AN_IDENTIFIER([__atomic], [AC_C___ATOMIC])
-AC_DEFUN([AC_C___ATOMIC],
-[AC_CACHE_CHECK([for __atomic], ac_cv_c___atomic,
-[AC_LINK_IFELSE(
- [AC_LANG_SOURCE(
- [[int
- main (int argc, char **argv)
- {
- volatile unsigned long ul1 = 1, ul2 = 0, ul3 = 2;
- __atomic_load_n(&ul1, __ATOMIC_SEQ_CST);
- __atomic_compare_exchange(&ul1, &ul2, &ul3, 1, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
- __atomic_fetch_add(&ul1, 1, __ATOMIC_SEQ_CST);
- __atomic_fetch_sub(&ul3, 1, __ATOMIC_SEQ_CST);
- __atomic_or_fetch(&ul1, ul2, __ATOMIC_SEQ_CST);
- __atomic_and_fetch(&ul1, ul2, __ATOMIC_SEQ_CST);
- volatile unsigned long long ull1 = 1, ull2 = 0, ull3 = 2;
- __atomic_load_n(&ull1, __ATOMIC_SEQ_CST);
- __atomic_compare_exchange(&ull1, &ull2, &ull3, 1, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
- __atomic_fetch_add(&ull1, 1, __ATOMIC_SEQ_CST);
- __atomic_fetch_sub(&ull3, 1, __ATOMIC_SEQ_CST);
- __atomic_or_fetch(&ull1, ull2, __ATOMIC_SEQ_CST);
- __atomic_and_fetch(&ull1, ull2, __ATOMIC_SEQ_CST);
- return 0;
- }
- ]])],
- [ac_cv_c___atomic=yes],
- [ac_cv_c___atomic=no])])
-if test $ac_cv_c___atomic = yes; then
- AC_DEFINE([HAVE_C___ATOMIC], 1,
- [Define to 1 if __atomic operations work.])
-fi
-])# AC_C___ATOMIC
-
diff --git a/build_external/scenarios/aclk-testing/agent_netdata.conf b/build_external/scenarios/aclk-testing/agent_netdata.conf
index 7a2803c21..0d3627de6 100644
--- a/build_external/scenarios/aclk-testing/agent_netdata.conf
+++ b/build_external/scenarios/aclk-testing/agent_netdata.conf
@@ -18,28 +18,12 @@
# hostname = b073e16793c4
# history = 3996
# update every = 1
- # config directory = /etc/netdata
- # stock config directory = /usr/lib/netdata/conf.d
- # log directory = /var/log/netdata
- # web files directory = /usr/share/netdata/web
- # cache directory = /var/cache/netdata
- # lib directory = /var/lib/netdata
- # home directory = /var/cache/netdata
- # plugins directory = "/usr/libexec/netdata/plugins.d" "/etc/netdata/custom-plugins.d"
# memory mode = dbengine
# page cache size = 32
# dbengine disk space = 256
# host access prefix =
# memory deduplication (ksm) = yes
- # TZ environment variable = :/etc/localtime
# timezone = Etc/UTC
- # debug flags = 0x0000000000000000
- # debug log = /var/log/netdata/debug.log
- # error log = /var/log/netdata/error.log
- # access log = /var/log/netdata/access.log
- # facility log = daemon
- # errors flood protection period = 1200
- # errors to trigger flood protection = 200
# run as user = netdata
# OOM score = 1000
# process scheduling policy = idle
@@ -84,8 +68,6 @@
# web server max sockets = 262144
[plugins]
- # PATH environment variable = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin
- # PYTHONPATH environment variable =
# checks = no
# proc = yes
# diskspace = yes
@@ -96,7 +78,6 @@
# check for new plugins every = 60
# slabinfo = no
# go.d = yes
- # node.d = yes
# apps = yes
# charts.d = yes
# fping = yes
@@ -111,8 +92,6 @@
# default repeat critical = never
# in memory max health log entries = 1000
# script to execute on alarm = /usr/libexec/netdata/plugins.d/alarm-notify.sh
- # stock health configuration directory = /usr/lib/netdata/conf.d/health.d
- # health configuration directory = /etc/netdata/health.d
# rotate log every lines = 2000
# run at least every seconds = 10
# postpone alarms during hibernation for seconds = 60
@@ -202,7 +181,6 @@
# path to /sys/fs/cgroup/devices = /sys/fs/cgroup/devices
# max cgroups to allow = 1000
# max cgroups depth to monitor = 0
- # enable new cgroups detected at run time = yes
# enable by default cgroups matching = !*/init.scope !/system.slice/run-*.scope *.scope /machine.slice/*.service !*/vcpu* !*/emulator !*.mount !*.partition !*.service !*.socket !*.slice !*.swap !*.user !/ !/docker !/libvirt !/lxc !/lxc/*/* !/lxc.monitor !/lxc.pivot !/lxc.payload !/machine !/qemu !/system !/systemd !/user *
# search for cgroups in subpaths matching = !*/init.scope !*-qemu !*.libvirt-qemu !/init.scope !/system !/systemd !/user !/user.slice !/lxc/*/* !/lxc.monitor !/lxc.payload/*/* *
# script to get cgroup names = /usr/libexec/netdata/plugins.d/cgroup-name.sh
@@ -265,10 +243,6 @@
# update every = 1
# command options =
-[plugin:node.d]
- # update every = 1
- # command options =
-
[plugin:apps]
# update every = 1
# command options =
diff --git a/build_external/scenarios/gaps_lo/mostly_off.conf b/build_external/scenarios/gaps_lo/mostly_off.conf
index 2ac395a9b..079fef063 100644
--- a/build_external/scenarios/gaps_lo/mostly_off.conf
+++ b/build_external/scenarios/gaps_lo/mostly_off.conf
@@ -28,7 +28,6 @@ errors flood protection period = 0
fping = no
python.d = no
charts.d = no
- node.d = no
nfacct = no
cups = no
freeipmi = no