Netdata details: https://github.com/firehol/netdata/wiki
Requirements:
C.H.I.P: http://anonit.blogspot.com.au/2016/08/installing-chip-headless.html; or
Raspberry PI: http://anonit.blogspot.com.au/2016/05/headless-install-of-raspbian-jessie.html
Logon to the device using SSH.
Check if CURL is installed by using the command
which curl
if it is not installed then install using sudo apt-get install curl.
Install the full install packages for netdata:
curl -Ss ‘https://raw.githubusercontent.com/firehol/netdata-demo-site/master/install-required-packages.sh’ >/tmp/kickstart.sh && bash /tmp/kickstart.sh -i netdata-all
(There is a minimum install package that can be used if necessary: curl -Ss ‘https://raw.githubusercontent.com/firehol/netdata-demo-site/master/install-required-packages.sh’ >/tmp/kickstart.sh && bash /tmp/kickstart.sh -i netdata)
Download the netdata installer:
git clone https://github.com/firehol/netdata.git –depth=1
go into the netdata folder:
cd netdata
install netdata:
sudo ./netdata-installer.sh
Once installed, you can access the website on %IPADDRESS%:19999
to update, go into the netdata folder:
cd netdata
and run the updater:
sudo ./netdata-updater.sh
references: https://github.com/firehol/netdata/wiki/Installation
There is now a new way to install, use the command:
# for some reason a space is apearing between the less than and open brace# there shouldn't be one
bash <(curl -Ss https://my-netdata.io/kickstart.sh)
And an easy way to update:
# go to the git downloaded directorycd /path/to/git/downloaded/netdata
# run the updater
./netdata-updater.sh
References:
https://github.com/firehol/netdata/wiki/Installation