<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: How to Monitor Performance Of CentOS 8/7 Server Using Netdata	</title>
	<atom:link href="https://www.tecmint.com/monitor-centos-server-performance/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/monitor-centos-server-performance/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 13 Jun 2022 21:33:58 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Jurgen Hissen		</title>
		<link>https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1824674</link>

		<dc:creator><![CDATA[Jurgen Hissen]]></dc:creator>
		<pubDate>Mon, 13 Jun 2022 21:33:58 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=40528#comment-1824674</guid>

					<description><![CDATA[The instructions should be updated.

Instead of:
&lt;pre&gt;
$ git clone https://github.com/netdata/netdata.git --depth=100
&lt;/pre&gt;
Use:
&lt;pre&gt;
$ git clone --recursive https://github.com/netdata/netdata.git --depth=100
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>The instructions should be updated.</p>
<p>Instead of:</p>
<pre>
$ git clone https://github.com/netdata/netdata.git --depth=100
</pre>
<p>Use:</p>
<pre>
$ git clone --recursive https://github.com/netdata/netdata.git --depth=100
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1802886</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 23 May 2022 04:57:27 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=40528#comment-1802886</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1801143&quot;&gt;Farhad&lt;/a&gt;.

@Farhad,

To install Netdata along with all the needed dependencies, run the following as your normal user:
&lt;pre&gt;
$ wget -O /tmp/netdata-kickstart.sh https://my-netdata.io/kickstart.sh &amp;&amp; sh /tmp/netdata-kickstart.sh
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1801143">Farhad</a>.</p>
<p>@Farhad,</p>
<p>To install Netdata along with all the needed dependencies, run the following as your normal user:</p>
<pre>
$ wget -O /tmp/netdata-kickstart.sh https://my-netdata.io/kickstart.sh &#038;& sh /tmp/netdata-kickstart.sh
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Farhad		</title>
		<link>https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1801143</link>

		<dc:creator><![CDATA[Farhad]]></dc:creator>
		<pubDate>Sat, 21 May 2022 04:06:08 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=40528#comment-1801143</guid>

					<description><![CDATA[I am getting this error, can you please tell me how to fix?
&lt;code&gt;
make[2]: Entering directory `/root/netdata&#039;
  CC       libnetdata/json/jsmn.o
  CC       database/sqlite/sqlite_aclk.o
  CC       database/sqlite/sqlite_health.o
  CC       database/sqlite/sqlite_aclk_node.o
  CC       database/sqlite/sqlite_aclk_chart.o
In file included from database/sqlite/../../aclk/aclk.h:6:0,
                 from database/sqlite/sqlite_aclk.c:10:
database/sqlite/../../aclk/aclk_util.h:6:29: fatal error: mqtt_wss_client.h: No such file or directory
 #include &quot;mqtt_wss_client.h&quot;
                             ^
compilation terminated.
database/sqlite/sqlite_aclk_chart.c: In function &#039;queue_chart_to_aclk&#039;:
database/sqlite/sqlite_aclk_chart.c:1329:10: error: &#039;aclk_use_new_cloud_arch&#039; undeclared (first use in this function)
     if (!aclk_use_new_cloud_arch &#038;&#038; aclk_connected) {
          ^
database/sqlite/sqlite_aclk_chart.c:1329:10: note: each undeclared identifier is reported only once for each function it appears in
database/sqlite/sqlite_aclk_chart.c:1330:9: warning: implicit declaration of function &#039;aclk_update_chart&#039; [-Wimplicit-function-declaration]
         aclk_update_chart(st-&#062;rrdhost, st-&#062;id, 1);
         ^
database/sqlite/sqlite_aclk_chart.c:1333:5: warning: implicit declaration of function &#039;sql_queue_chart_payload&#039; [-Wimplicit-function-declaration]
     return sql_queue_chart_payload((struct aclk_database_worker_config *) st-&#062;rrdhost-&#062;dbsync_worker,
     ^
make[2]: *** [database/sqlite/sqlite_aclk_chart.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [database/sqlite/sqlite_aclk.o] Error 1
make[2]: Leaving directory `/root/netdata&#039;
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/netdata&#039;
make: *** [all] Error 2
 FAILED  &#039;&#039;

 ABORTED  Failed to build Netdata.
&lt;/code&gt;
]]></description>
			<content:encoded><![CDATA[<p>I am getting this error, can you please tell me how to fix?<br />
<code><br />
make[2]: Entering directory `/root/netdata'<br />
  CC       libnetdata/json/jsmn.o<br />
  CC       database/sqlite/sqlite_aclk.o<br />
  CC       database/sqlite/sqlite_health.o<br />
  CC       database/sqlite/sqlite_aclk_node.o<br />
  CC       database/sqlite/sqlite_aclk_chart.o<br />
In file included from database/sqlite/../../aclk/aclk.h:6:0,<br />
                 from database/sqlite/sqlite_aclk.c:10:<br />
database/sqlite/../../aclk/aclk_util.h:6:29: fatal error: mqtt_wss_client.h: No such file or directory<br />
 #include "mqtt_wss_client.h"<br />
                             ^<br />
compilation terminated.<br />
database/sqlite/sqlite_aclk_chart.c: In function 'queue_chart_to_aclk':<br />
database/sqlite/sqlite_aclk_chart.c:1329:10: error: 'aclk_use_new_cloud_arch' undeclared (first use in this function)<br />
     if (!aclk_use_new_cloud_arch &amp;&amp; aclk_connected) {<br />
          ^<br />
database/sqlite/sqlite_aclk_chart.c:1329:10: note: each undeclared identifier is reported only once for each function it appears in<br />
database/sqlite/sqlite_aclk_chart.c:1330:9: warning: implicit declaration of function 'aclk_update_chart' [-Wimplicit-function-declaration]<br />
         aclk_update_chart(st-&gt;rrdhost, st-&gt;id, 1);<br />
         ^<br />
database/sqlite/sqlite_aclk_chart.c:1333:5: warning: implicit declaration of function 'sql_queue_chart_payload' [-Wimplicit-function-declaration]<br />
     return sql_queue_chart_payload((struct aclk_database_worker_config *) st-&gt;rrdhost-&gt;dbsync_worker,<br />
     ^<br />
make[2]: *** [database/sqlite/sqlite_aclk_chart.o] Error 1<br />
make[2]: *** Waiting for unfinished jobs....<br />
make[2]: *** [database/sqlite/sqlite_aclk.o] Error 1<br />
make[2]: Leaving directory `/root/netdata'<br />
make[1]: *** [all-recursive] Error 1<br />
make[1]: Leaving directory `/root/netdata'<br />
make: *** [all] Error 2<br />
 FAILED  ''</p>
<p> ABORTED  Failed to build Netdata.<br />
</code></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
