Created
February 19, 2020 14:06
-
-
Save LinuxDevOpsGirl/3bfe2d02bffb23dd7753c55c399df944 to your computer and use it in GitHub Desktop.
Install Netdata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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