blob: 7bcb908012ea369aabdb1e88b6d2493d24c34b1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit linux-info systemd user
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://github.com/firehol/${PN}.git"
inherit git-r3 autotools
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://firehol.org/download/${PN}/releases/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Linux real time system monitoring, done right!"
HOMEPAGE="https://github.com/firehol/netdata http://netdata.firehol.org/"
LICENSE="GPL-3+ MIT BSD"
SLOT="0"
IUSE="+compression nfacct nodejs"
# most unconditional dependencies are for plugins.d/charts.d.plugin:
RDEPEND="
>=app-shells/bash-4:0
net-misc/curl
net-misc/wget
virtual/awk
compression? ( sys-libs/zlib )
nfacct? (
net-firewall/nfacct
net-libs/libmnl
)
nodejs? (
net-libs/nodejs
)"
DEPEND="${RDEPEND}
virtual/pkgconfig"
# check for Kernel-Samepage-Merging (CONFIG_KSM)
CONFIG_CHECK="
~KSM
"
: ${NETDATA_USER:=netdata}
: ${NETDATA_GROUP:=netdata}
pkg_setup() {
linux-info_pkg_setup
enewgroup ${PN}
enewuser ${PN} -1 -1 / ${PN}
}
src_prepare() {
default
[[ ${PV} == "9999" ]] && eautoreconf
}
src_configure() {
econf \
--localstatedir=/var \
--with-user=${NETDATA_USER} \
$(use_enable nfacct plugin-nfacct) \
$(use_with compression zlib)
}
src_install() {
default
fowners ${NETDATA_USER}:${NETDATA_GROUP} /var/log/netdata
fowners ${NETDATA_USER}:${NETDATA_GROUP} /var/cache/netdata
chown -Rc ${NETDATA_USER}:${NETDATA_GROUP} "${ED}"/usr/share/${PN} || die
cat >> "${T}"/${PN}-sysctl <<- EOF
kernel.mm.ksm.run = 1
kernel.mm.ksm.sleep_millisecs = 1000
EOF
dodoc "${T}"/${PN}-sysctl
newinitd system/netdata-openrc ${PN}
systemd_dounit system/netdata.service
}
pkg_postinst() {
if [[ -e "/sys/kernel/mm/ksm/run" ]]; then
elog "INFORMATION:"
echo ""
elog "I see you have kernel memory de-duper (called Kernel Same-page Merging,"
elog "or KSM) available, but it is not currently enabled."
echo ""
elog "To enable it run:"
echo ""
elog "echo 1 >/sys/kernel/mm/ksm/run"
elog "echo 1000 >/sys/kernel/mm/ksm/sleep_millisecs"
echo ""
elog "If you enable it, you will save 20-60% of netdata memory."
else
elog "INFORMATION:"
echo ""
elog "I see you do not have kernel memory de-duper (called Kernel Same-page"
elog "Merging, or KSM) available."
echo ""
elog "To enable it, you need a kernel built with CONFIG_KSM=y"
echo ""
elog "If you can have it, you will save 20-60% of netdata memory."
fi
}
|