<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Netdata Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/netdata/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 15 Feb 2021 16:45:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install Netdata on Ubuntu 20.04 / Debian 10</title>
		<link>https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/</link>
					<comments>https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 17 Feb 2021 06:49:00 +0000</pubDate>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[Netdata]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28120</guid>

					<description><![CDATA[<p>Servers are usually the most important part of a network, monitoring and knowing what their performance is is an essential task of any system administrator. They must therefore ensure that they use efficient tools to meet certain objectives. That is why, today you will learn to install Netdata on Ubuntu 20.04 / Debian 10. Netdata [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/">How to install Netdata on Ubuntu 20.04 / Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>Servers are usually the most important part of a network</strong>, monitoring and knowing what their performance is is an essential task of any system administrator. They must therefore ensure that they use efficient tools to meet certain objectives. That is why, today you will learn to install Netdata on Ubuntu 20.04 / Debian 10.</p>



<p><a href="https://www.netdata.cloud/">Netdata</a> is a tool to visualize and monitor metrics in real time, optimized to accumulate all types of data. It is also optimized to accumulate all types of data, such as CPU usage, disk activity, SQL queries, website visits, etc. The tool is designed to visualize the now in as much detail as possible, allowing the user to get an overview of what is happening and what has just happened in your system or application.</p>



<h2 id="netdata-is-very-easy-to-use"><a href="#netdata-is-very-easy-to-use" name="netdata-is-very-easy-to-use"></a>Netdata is very easy to use</h2>



<p>For the server monitoring conception conceived by Netdata, it is vital that everything is monitorable. It also has the following attributes.</p>



<ul><li>Out of the box: netdata supports auto-detection for everything. It collects more than 5000 metrics automatically, with zero configuration</li><li>Basically, it can monitor practically in real time and achieves this without sacrificing performance in its execution.</li><li>It is highly customizable thanks to HTML.</li><li>Extensible: Anything you can get a number for, can be given to netdata, using its Plugin API.</li><li>Scalable: netdata scales out, your web browser is the central netdata connecting all your servers together</li></ul>



<h2 id="install-netdata-on-ubuntu-20.04"><a name="install-netdata-on-ubuntu-20.04" href="#install-netdata-on-ubuntu-20.04"></a>Install Netdata on Ubuntu 20.04 / Debian 10</h2>



<p>One of the main advantages of Netdata is that we can install it using the official Ubuntu repositories. This, apart from being secure, will give us the necessary stability in this kind of procedure.</p>



<p>So, open a terminal or <a href="https://www.osradar.com/install-snowflake-ssh-client-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">SSH</a> session.</p>



<p>When you start it, it updates Ubuntu completely.</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p>Once the system is fully upgraded, you can install Netdata by running the following command:</p>



<pre class="wp-block-preformatted">sudo apt install netdata</pre>



<p>Netdata is also managed as a system service, so you can use the systemctl command to start it, stop it, or check its status.</p>



<p>Netdata is now available from <code>http://localhost:19999</code> but you may want to configure Nginx as a reverse proxy.</p>



<h2 id="configuring-nginx-as-reverse-proxy-for-netdata"><a href="#configuring-nginx-as-reverse-proxy-for-netdata" name="configuring-nginx-as-reverse-proxy-for-netdata"></a>Configuring Nginx as reverse proxy for Netdata</h2>



<p>First, install Nginx from the Ubuntu repositories.</p>



<pre class="wp-block-preformatted">sudo apt install nginx</pre>



<p>Next, create a new configuration file for Netdata</p>



<pre class="wp-block-preformatted">sudo nano /etc/nginx/conf.d/netdata.conf</pre>



<p>And add the following:</p>



<pre class="wp-block-preformatted">upstream backend {
# the Netdata server
server 127.0.0.1:19999;
keepalive 64;
}
server {
# nginx listens to this
listen 80;
# the virtual host name of this
server_name angtest.ga;

<code data-origin="<pre><code>upstream backend {
# the Netdata server
server 127.0.0.1:19999;
keepalive 64;
}

server {
# nginx listens to this
listen 80;

# the virtual host name of this
server_name angtest.ga;

location / {
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://backend;
    proxy_http_version 1.1;
    proxy_pass_request_headers on;
    proxy_set_header Connection &quot;keep-alive&quot;;
    proxy_store off;
}
}
</code></pre>
<p>">    location / {

    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://backend;
    proxy_http_version 1.1;   </code>
       <code data-origin="<pre><code>upstream backend {
# the Netdata server
server 127.0.0.1:19999;
keepalive 64;
}

server {
# nginx listens to this
listen 80;

# the virtual host name of this
server_name angtest.ga;

location / {
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://backend;
    proxy_http_version 1.1;
    proxy_pass_request_headers on;
    proxy_set_header Connection &quot;keep-alive&quot;;
    proxy_store off;
}
}
</code></pre>
<p>">proxy_pass_request_headers on;
    proxy_set_header Connection "keep-alive";
    proxy_store off;
}
}</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="889" height="488" src="https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx.png" alt="Configuring Nginx for Netdata" class="wp-image-28121" srcset="https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx.png 889w, https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx-300x165.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx-768x422.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx-696x382.png 696w" sizes="(max-width: 889px) 100vw, 889px" /><figcaption>Configuring Nginx for Netdata</figcaption></figure>



<p>Replace <code>server_name</code> with the name of your server.</p>



<p>It is also a good idea to secure your Netdata installation by installing and adding certificates to enable HTTPS.</p>



<pre class="wp-block-preformatted">So, install Certbot.</pre>



<pre class="wp-block-preformatted">sudo apt install certbot python3-certbot-nginx</pre>



<p>And create the new certificate for your domain by running:</p>



<pre class="wp-block-preformatted">sudo certbot --nginx --agree-tos --redirect --hsts --staple-ocsp --email you@example.com -d your-domain</pre>



<p>Replace the <code>email</code> and <code>-d</code> values with your own.</p>



<p>Finally, restart Nginx.</p>



<pre class="wp-block-preformatted">sudo systemctl restart nginx</pre>



<h2 id="using-netdata"><a href="#using-netdata" name="using-netdata"></a>Using Netdata</h2>



<p>Now you can open netdata from your web browser by opening <a href="https://your-domain">https://your-domain</a> and you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/01/netdata-1024x506.png" alt="Netdata on Ubuntu 20.04 / Debian 10" class="wp-image-28122" srcset="https://www.osradar.com/wp-content/uploads/2021/01/netdata-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/netdata.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Netdata on Ubuntu 20.04 / Debian 10</figcaption></figure>



<p>After that, just check the options on the left side of the screen.</p>



<p>So, enjoy it.</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>About Netdata you can say that it’s amazing how easy it is to use. Also, the app is really an Out-The-Box application because you simply don’t have to configure anything extra, it’s just install and go</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/">How to install Netdata on Ubuntu 20.04 / Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Monitor and control your GNU/LINUX server with Netdata</title>
		<link>https://www.osradar.com/monitor-and-control-your-gnu-linux-server-with-netdata/</link>
					<comments>https://www.osradar.com/monitor-and-control-your-gnu-linux-server-with-netdata/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 11 Jul 2018 06:56:14 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[Netdata]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=4746</guid>

					<description><![CDATA[<p>Servers are usually the most important part of a network, monitoring and knowing what their performance is is an essential task of any system administrator. They must therefore ensure that they use efficient tools to meet certain objectives. Netdata is a tool to visualize and monitor metrics in real time, optimized to accumulate all types [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitor-and-control-your-gnu-linux-server-with-netdata/">Monitor and control your GNU/LINUX server with Netdata</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Servers are usually the most important part of a network, <strong>monitoring</strong> and knowing what their performance is is an essential task of any system administrator. They must therefore ensure that they use efficient tools to meet certain objectives.</p>
<p><a href="https://my-netdata.io/">Netdata</a> is a tool to <strong>visualize and monitor metrics in real time</strong>, optimized to accumulate all types of data. It is also optimized to accumulate all types of data, such as CPU usage, disk activity, SQL queries, website visits, etc. The tool is designed to visualize the now in as much detail as possible, allowing the user to get an overview of what is happening and what has just happened in your system or application.</p>
<h2>Simple, easy to use, powerful and open source</h2>
<p>For the server monitoring conception conceived by Netdata, it is vital that <strong>everything is monitorable</strong>. It also has the following attributes.</p>
<ul>
<li><strong>Out of the box</strong>: netdata supports auto-detection for everything. It collects more than 5000 metrics automatically, with zero configuration</li>
<li>Basically, it can monitor practically in<strong> real time</strong> and achieves this without sacrificing performance in its execution.</li>
<li>It is highly <strong>customizable</strong> thanks to HTML.</li>
<li><strong>Extensible</strong>: Anything you can get a number for, can be given to netdata, using its Plugin API.</li>
<li><strong>Scalable</strong>: netdata scales out, your web browser is the central netdata connecting all your servers together</li>
</ul>
<h2>Installation on GNU/LINUX systems</h2>
<p>The fastest and most direct way to install it is through the official repositories:</p>
<p>For Debian and Ubuntu:</p>
<p><strong>              sudo apt install netdata</strong></p>
<p>For OpenSuse:</p>
<p><strong>             sudo zypper in netdata</strong></p>
<p>Gentoo:</p>
<p><strong>             sudo emerge &#8211;ask netdata</strong></p>
<p>Arch Linux:</p>
<p><strong>             sudo pacman -S netdata</strong></p>
<p>This installation method is ideal if you want to do it quickly and without problems, but does not guarantee to have the latest stable version.</p>
<p>In this tutorial, we will use Ubuntu 18.04 and install the latest stable version of netdata.</p>
<p>On your GitHub site we found a method to install the latest stable version thanks to the execution of a single line that we will write in the terminal.</p>
<p><strong>              bash &lt;(curl -Ss https://my-netdata.io/kickstart.sh)</strong></p>
<p>It is important not to run the above command with sudo.</p>
<p><figure id="attachment_4747" aria-describedby="caption-attachment-4747" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4747" src="https://www.osradar.com/wp-content/uploads/2018/07/1-2.png" alt="1.- Running the installer command" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/1-2.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/1-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/1-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/1-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/1-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/1-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/1-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4747" class="wp-caption-text">1.- Running the installer command</figcaption></figure></p>
<p>Then we&#8217;ll notice that it looks for the missing dependencies and installs them.</p>
<p><figure id="attachment_4748" aria-describedby="caption-attachment-4748" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4748" src="https://www.osradar.com/wp-content/uploads/2018/07/2-2.png" alt="2.- Installing dependencies" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/2-2.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/2-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/2-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/2-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/2-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/2-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/2-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4748" class="wp-caption-text">2.- Installing dependencies</figcaption></figure></p>
<p><figure id="attachment_4749" aria-describedby="caption-attachment-4749" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4749" src="https://www.osradar.com/wp-content/uploads/2018/07/3-2.png" alt="3.- Installing dependencies" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/3-2.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/3-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/3-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/3-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/3-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/3-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/3-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4749" class="wp-caption-text">3.- Installing dependencies</figcaption></figure></p>
<p>Then you will download the netdata script.</p>
<p><figure id="attachment_4750" aria-describedby="caption-attachment-4750" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4750" src="https://www.osradar.com/wp-content/uploads/2018/07/4.png" alt="4.- Downloading the main script" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4750" class="wp-caption-text">4.- Downloading the main script</figcaption></figure></p>
<p><figure id="attachment_4751" aria-describedby="caption-attachment-4751" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4751" src="https://www.osradar.com/wp-content/uploads/2018/07/5-2.png" alt="5.- Downloading the main script" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/5-2.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/5-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/5-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/5-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/5-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/5-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/5-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4751" class="wp-caption-text">5.- Downloading the netdata main script</figcaption></figure></p>
<p>The next thing the script will do is build and install <strong>netdata</strong>.</p>
<p><figure id="attachment_4752" aria-describedby="caption-attachment-4752" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4752" src="https://www.osradar.com/wp-content/uploads/2018/07/6-2.png" alt="6.- Building netdata" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/6-2.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/6-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/6-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/6-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/6-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/6-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/6-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4752" class="wp-caption-text">6.- Building netdata</figcaption></figure></p>
<p>Will finally send us a message saying that the process was successfully completed.</p>
<h2>First use of Netdata</h2>
<p>Before running netdata, we must enable it as a service:</p>
<p><strong>             sudo systemctl start netdata</strong></p>
<p><figure id="attachment_4753" aria-describedby="caption-attachment-4753" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4753" src="https://www.osradar.com/wp-content/uploads/2018/07/8-1.png" alt="8.- Starting netdata service" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/8-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/8-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/8-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/8-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/8-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/8-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4753" class="wp-caption-text">8.- Starting netdata service</figcaption></figure></p>
<p>Netdata uses port 19999, so we must enable the use of that port in the firewall.</p>
<p><strong>             sudo ufw allow 19999/tcp</strong></p>
<p><figure id="attachment_4754" aria-describedby="caption-attachment-4754" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4754" src="https://www.osradar.com/wp-content/uploads/2018/07/9-3.png" alt="9.- Enabling ports" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/07/9-3.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/9-3-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/9-3-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/9-3-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/9-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/9-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/9-3-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4754" class="wp-caption-text">9.- Enabling ports</figcaption></figure></p>
<p>Now we can access it from the web:</p>
<p><strong>              http:IP_SERVER:19999</strong></p>
<p><figure id="attachment_4755" aria-describedby="caption-attachment-4755" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4755" src="https://www.osradar.com/wp-content/uploads/2018/07/10-1.png" alt="10.- Dashboard netdata" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/07/10-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/10-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/10-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/10-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/10-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/07/10-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/10-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/10-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4755" class="wp-caption-text">10.- Dashboard netdata</figcaption></figure></p>
<p><figure id="attachment_4756" aria-describedby="caption-attachment-4756" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4756" src="https://www.osradar.com/wp-content/uploads/2018/07/11-1.png" alt="11.- Using netdata" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/07/11-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/11-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/11-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/11-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/11-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/07/11-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/11-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/11-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4756" class="wp-caption-text">11.- Using netdata</figcaption></figure></p>
<p>About Netdata you can say that it&#8217;s amazing how easy it is to use. It&#8217;s really an Out-The-Box application because you simply don&#8217;t have to configure anything extra, it&#8217;s just install and go.</p>
<p>As against we can say that it would be better if the graphs showed them in a more orderly way and by categories.</p>
<p>Please share this article through your social networks.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitor-and-control-your-gnu-linux-server-with-netdata/">Monitor and control your GNU/LINUX server with Netdata</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/monitor-and-control-your-gnu-linux-server-with-netdata/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
