initial
This commit is contained in:
54
scripts/build.sh
Normal file
54
scripts/build.sh
Normal file
@@ -0,0 +1,54 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# some mirrors have issues, i skipped httpredir in favor of an eu mirror
|
||||
|
||||
echo "deb http://ftp.nl.debian.org/debian/ jessie main" > /etc/apt/sources.list
|
||||
echo "deb http://security.debian.org/debian-security jessie/updates main" >> /etc/apt/sources.list
|
||||
|
||||
# install dependencies for build
|
||||
|
||||
apt-get -qq update
|
||||
apt-get -y install zlib1g-dev uuid-dev libmnl-dev gcc make curl git autoconf autogen automake pkg-config netcat-openbsd jq
|
||||
apt-get -y install autoconf-archive lm-sensors nodejs python python-mysqldb python-yaml
|
||||
apt-get -y install ssmtp mailutils apcupsd
|
||||
|
||||
# fetch netdata
|
||||
|
||||
git clone https://github.com/netdata/netdata.git /netdata.git
|
||||
cd /netdata.git
|
||||
TAG=$(</git-tag)
|
||||
if [ ! -z "$TAG" ]; then
|
||||
echo "Checking out tag: $TAG"
|
||||
git checkout tags/$TAG
|
||||
else
|
||||
echo "No tag, using master"
|
||||
fi
|
||||
|
||||
# use the provided installer
|
||||
|
||||
./netdata-installer.sh --dont-wait --dont-start-it --disable-telemetry
|
||||
|
||||
touch /etc/netdata/.opt-out-from-anonymous-statistics
|
||||
|
||||
# removed hack on 2017/1/3
|
||||
#chown root:root /usr/libexec/netdata/plugins.d/apps.plugin
|
||||
#chmod 4755 /usr/libexec/netdata/plugins.d/apps.plugin
|
||||
|
||||
# remove build dependencies
|
||||
|
||||
cd /
|
||||
rm -rf /netdata.git
|
||||
|
||||
dpkg -P zlib1g-dev uuid-dev libmnl-dev gcc make git autoconf autogen automake pkg-config
|
||||
apt-get -y autoremove
|
||||
apt-get clean
|
||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
|
||||
# symlink access log and error log to stdout/stderr
|
||||
|
||||
ln -sf /dev/stdout /var/log/netdata/access.log
|
||||
ln -sf /dev/stdout /var/log/netdata/debug.log
|
||||
ln -sf /dev/stderr /var/log/netdata/error.log
|
||||
110
scripts/run.sh
Normal file
110
scripts/run.sh
Normal file
@@ -0,0 +1,110 @@
|
||||
#!/bin/bash
|
||||
|
||||
# fix permissions due to netdata running as root
|
||||
chown root:root /usr/share/netdata/web/ -R
|
||||
echo -n "" > /usr/share/netdata/web/version.txt
|
||||
|
||||
# set up ssmtp
|
||||
if [[ $SSMTP_TO ]]; then
|
||||
cat << EOF > /etc/ssmtp/ssmtp.conf
|
||||
root=$SSMTP_TO
|
||||
mailhub=$SSMTP_SERVER:$SSMTP_PORT
|
||||
UseSTARTTLS=$SSMTP_TLS
|
||||
hostname=$SSMTP_HOSTNAME
|
||||
FromLineOverride=NO
|
||||
EOF
|
||||
|
||||
cat << EOF > /etc/ssmtp/revaliases
|
||||
netdata:netdata@$SSMTP_HOSTNAME:$SSMTP_SERVER:$SSMTP_PORT
|
||||
root:netdata@$SSMTP_HOSTNAME:$SSMTP_SERVER:$SSMTP_PORT
|
||||
EOF
|
||||
fi
|
||||
|
||||
if [[ $SSMTP_USER ]]; then
|
||||
cat << EOF >> /etc/ssmtp/ssmtp.conf
|
||||
AuthUser=$SSMTP_USER
|
||||
EOF
|
||||
fi
|
||||
|
||||
if [[ $SSMTP_PASS ]]; then
|
||||
cat << EOF >> /etc/ssmtp/ssmtp.conf
|
||||
AuthPass=$SSMTP_PASS
|
||||
EOF
|
||||
fi
|
||||
|
||||
if [[ $SLACK_WEBHOOK_URL ]]; then
|
||||
sed -i -e "s@SLACK_WEBHOOK_URL=\"\"@SLACK_WEBHOOK_URL=\"${SLACK_WEBHOOK_URL}\"@" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $SLACK_CHANNEL ]]; then
|
||||
sed -i -e "s@DEFAULT_RECIPIENT_SLACK=\"\"@DEFAULT_RECIPIENT_SLACK=\"${SLACK_CHANNEL}\"@" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $DISCORD_WEBHOOK_URL ]]; then
|
||||
sed -i -e "s@DISCORD_WEBHOOK_URL=\"\"@DISCORD_WEBHOOK_URL=\"${DISCORD_WEBHOOK_URL}\"@" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $DISCORD_RECIPIENT ]]; then
|
||||
sed -i -e "s@DEFAULT_RECIPIENT_DISCORD=\"\"@DEFAULT_RECIPIENT_DISCORD=\"${DISCORD_RECIPIENT}\"@" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $TELEGRAM_BOT_TOKEN ]]; then
|
||||
sed -i -e "s@TELEGRAM_BOT_TOKEN=\"\"@TELEGRAM_BOT_TOKEN=\"${TELEGRAM_BOT_TOKEN}\"@" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $TELEGRAM_CHAT_ID ]]; then
|
||||
sed -i -e "s@DEFAULT_RECIPIENT_TELEGRAM=\"\"@DEFAULT_RECIPIENT_TELEGRAM=\"${TELEGRAM_CHAT_ID}\"@" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $PUSHBULLET_ACCESS_TOKEN ]]; then
|
||||
sed -i -e "s@PUSHBULLET_ACCESS_TOKEN=\"\"@PUSHBULLET_ACCESS_TOKEN=\"${PUSHBULLET_ACCESS_TOKEN}\"@" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $PUSHBULLET_DEFAULT_EMAIL ]]; then
|
||||
sed -i -e "s#DEFAULT_RECIPIENT_PUSHBULLET=\"\"#DEFAULT_RECIPIENT_PUSHBULLET=\"${PUSHBULLET_DEFAULT_EMAIL}\"#" /etc/netdata/health_alarm_notify.conf
|
||||
fi
|
||||
|
||||
if [[ $NETDATA_IP ]]; then
|
||||
NETDATA_ARGS="${NETDATA_ARGS} -i ${NETDATA_IP}"
|
||||
fi
|
||||
|
||||
# on a client netdata set this destination to be the [PROTOCOL:]HOST[:PORT] of the
|
||||
# central netdata, and give an API_KEY that is secret and only known internally
|
||||
# to the netdata clients, and netdata central
|
||||
if [[ $NETDATA_STREAM_DESTINATION ]] && [[ $NETDATA_STREAM_API_KEY ]]; then
|
||||
cat << EOF > /etc/netdata/stream.conf
|
||||
[stream]
|
||||
enabled = yes
|
||||
destination = $NETDATA_STREAM_DESTINATION
|
||||
api key = $NETDATA_STREAM_API_KEY
|
||||
EOF
|
||||
fi
|
||||
|
||||
# set 1 or more NETADATA_API_KEY_ENABLE env variables, such as NETDATA_API_KEY_ENABLE_1h213ch12h3rc1289e=1
|
||||
# that matches the API_KEY that you used on the client above, this will enable the netdata client
|
||||
# node to communicate with the netdata central
|
||||
if printenv | grep -q 'NETDATA_API_KEY_ENABLE_'; then
|
||||
printenv | grep -oe 'NETDATA_API_KEY_ENABLE_[^=]\+' | sed 's/NETDATA_API_KEY_ENABLE_//' | xargs -n1 -I{} echo '['{}$']\n\tenabled = yes' >> /etc/netdata/stream.conf
|
||||
fi
|
||||
|
||||
# exec custom command
|
||||
if [[ $# -gt 0 ]] ; then
|
||||
exec "$@"
|
||||
exit
|
||||
fi
|
||||
|
||||
if [[ -d "/fakenet/" ]]; then
|
||||
echo "Running fakenet config reload in background"
|
||||
( sleep 10 ; curl -s http://localhost:${NETDATA_PORT}/netdata.conf | sed -e 's/# filename/filename/g' | sed -e 's/\/host\/proc\/net/\/fakenet\/proc\/net/g' > /etc/netdata/netdata.conf ; pkill -9 netdata ) &
|
||||
/usr/sbin/netdata -D -u root -s /host -p ${NETDATA_PORT}
|
||||
# add some artificial sleep because netdata might think it can't bind to $NETDATA_PORT
|
||||
# and report things like "netdata: FATAL: Cannot listen on any socket. Exiting..."
|
||||
sleep 1
|
||||
fi
|
||||
|
||||
for f in /etc/netdata/override/*; do
|
||||
cp -a $f /etc/netdata/
|
||||
done
|
||||
|
||||
# main entrypoint
|
||||
exec /usr/sbin/netdata -D -u root -s /host -p ${NETDATA_PORT} ${NETDATA_ARGS} "$@"
|
||||
Reference in New Issue
Block a user