netdata: disable shared memory totals by default
Fix log spam: daemon.err netdata[2090]: PROCFILE: Cannot open file '/proc/sysvipc/shm' This is caused by a non existant /proc/sysvipc/shm because of the CONFIG_PROC_STRIPPED option that is enabled by default in the kernel generic target config Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>
This commit is contained in:
parent
cd11d8821f
commit
5f65d87bb7
2 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=netdata
|
PKG_NAME:=netdata
|
||||||
PKG_VERSION:=1.29.3
|
PKG_VERSION:=1.29.3
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>, Daniel Engberg <daniel.engberg.lists@pyret.net>
|
PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>, Daniel Engberg <daniel.engberg.lists@pyret.net>
|
||||||
PKG_LICENSE:=GPL-3.0-or-later
|
PKG_LICENSE:=GPL-3.0-or-later
|
||||||
|
|
|
@ -27,3 +27,6 @@
|
||||||
|
|
||||||
[health]
|
[health]
|
||||||
enabled = no
|
enabled = no
|
||||||
|
|
||||||
|
[plugin:proc:ipc]
|
||||||
|
shared memory totals = no
|
||||||
|
|
Loading…
Reference in a new issue