Notes
Installing Netdata
sudo apt install netdata
- Check that netdata is running on the default port 19999. Note that netdata
does not by default respond to requests on public interfaces. I therefore
used an SSH tunnel from my laptop (
ssh -fN -L 19999:localhost:19999 albertyw.com
) to connect to netdata (localhost:19999
). sudo apt install apache2-utils nginx
- Write an nginx config file to proxy traffic to netdata.
- Generate a username/password:
sudo htpasswd -c netdata-access $USER
sudo service nginx reload