Commit ff3d83bc2f updated node_exporter
from 0.12.0 to 0.14.0, and it introduced a bug to download install file.
node_exporter started to add 'v' prefix in release tags[1] from 0.13.0,
so we need to fix the url.
[1] https://github.com/prometheus/node_exporter/tags
Fixes #2509
Signed-off-by: Amos Kong <amos@scylladb.com>
Message-Id: <42b0a7612539a34034896d404d63a0a31ce79e10.1497919368.git.amos@scylladb.com>
69 lines
2.1 KiB
Bash
Executable File
69 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright 2016 ScyllaDB
|
|
#
|
|
# This file is part of Scylla.
|
|
#
|
|
# Scylla is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Scylla is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
if [ "`id -u`" -ne 0 ]; then
|
|
echo "Requires root permission."
|
|
exit 1
|
|
fi
|
|
|
|
if [ -f /usr/bin/node_exporter ] || [ -f /usr/bin/prometheus-node_exporter ]; then
|
|
echo "node_exporter already installed"
|
|
exit 1
|
|
fi
|
|
|
|
. /usr/lib/scylla/scylla_lib.sh
|
|
|
|
if is_gentoo_variant; then
|
|
emerge -uq net-analyzer/prometheus-node_exporter
|
|
if is_systemd; then
|
|
echo "net-analyzer/prometheus-node_exporter does not install systemd service files, please fill a bug if you need them."
|
|
else
|
|
rc-update add prometheus-node_exporter default
|
|
service prometheus-node_exporter start
|
|
fi
|
|
else
|
|
version=0.14.0
|
|
dir=/usr/lib/scylla/Prometheus/node_exporter
|
|
mkdir -p $dir
|
|
cd $dir
|
|
curl -L https://github.com/prometheus/node_exporter/releases/download/v$version/node_exporter-$version.linux-amd64.tar.gz -o $dir/node_exporter-$version.linux-amd64.tar.gz
|
|
tar -xvzf $dir/node_exporter-$version.linux-amd64.tar.gz
|
|
rm $dir/node_exporter-$version.linux-amd64.tar.gz
|
|
ln -s $dir/node_exporter-$version.linux-amd64/node_exporter /usr/bin
|
|
. /etc/os-release
|
|
|
|
if is_systemd; then
|
|
systemctl enable node-exporter
|
|
systemctl start node-exporter
|
|
else
|
|
cat <<EOT >> /etc/init/node_exporter.conf
|
|
# Run node_exporter
|
|
|
|
start on startup
|
|
|
|
script
|
|
/usr/bin/node_exporter
|
|
end script
|
|
EOT
|
|
service node_exporter start
|
|
fi
|
|
fi
|
|
|
|
printf "node_exporter successfully installed\n"
|