Skip to content

Instantly share code, notes, and snippets.

@LinuxDevOpsGirl
Created February 19, 2020 14:06
Show Gist options
  • Save LinuxDevOpsGirl/3bfe2d02bffb23dd7753c55c399df944 to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/3bfe2d02bffb23dd7753c55c399df944 to your computer and use it in GitHub Desktop.
Install Netdata
Netdata
Netdata is an open source tool to visualize and monitor real-time metrics, optimized to accumulate all types of data, such as CPU usage, disk activity, SQL queries, visits to a website, etc.
Netdata is distributed, real-time, performance and health monitoring for systems and applications.
sudo apt update
sudo apt upgrade -y
sudo apt-get install netdata -y
sudo nano /etc/netdata/netdata.conf
add this
[global]
run as user = netdata
web files owner = root
web files group = root
bind socket to IP = 0.0.0.0
sudo systemctl restart netdate
sudo systemctl restart netdata.service
sudo systemctl status netdata.service
Visit: http://0.0.0.0:19999
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment