Comments on: How to Monitor Performance Of CentOS 8/7 Server Using Netdata https://www.tecmint.com/monitor-centos-server-performance/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Mon, 13 Jun 2022 21:33:58 +0000 hourly 1 By: Jurgen Hissen https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1824674 Mon, 13 Jun 2022 21:33:58 +0000 https://www.tecmint.com/?p=40528#comment-1824674 The instructions should be updated.

Instead of:

$ git clone https://github.com/netdata/netdata.git --depth=100

Use:

$ git clone --recursive https://github.com/netdata/netdata.git --depth=100
]]>
By: Ravi Saive https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1802886 Mon, 23 May 2022 04:57:27 +0000 https://www.tecmint.com/?p=40528#comment-1802886 In reply to Farhad.

@Farhad,

To install Netdata along with all the needed dependencies, run the following as your normal user:

$ wget -O /tmp/netdata-kickstart.sh https://my-netdata.io/kickstart.sh && sh /tmp/netdata-kickstart.sh
]]>
By: Farhad https://www.tecmint.com/monitor-centos-server-performance/comment-page-1/#comment-1801143 Sat, 21 May 2022 04:06:08 +0000 https://www.tecmint.com/?p=40528#comment-1801143 I am getting this error, can you please tell me how to fix?

make[2]: Entering directory `/root/netdata'
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 "mqtt_wss_client.h"
^
compilation terminated.
database/sqlite/sqlite_aclk_chart.c: In function 'queue_chart_to_aclk':
database/sqlite/sqlite_aclk_chart.c:1329:10: error: 'aclk_use_new_cloud_arch' undeclared (first use in this function)
if (!aclk_use_new_cloud_arch && 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 'aclk_update_chart' [-Wimplicit-function-declaration]
aclk_update_chart(st->rrdhost, st->id, 1);
^
database/sqlite/sqlite_aclk_chart.c:1333:5: warning: implicit declaration of function 'sql_queue_chart_payload' [-Wimplicit-function-declaration]
return sql_queue_chart_payload((struct aclk_database_worker_config *) st->rrdhost->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'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/netdata'
make: *** [all] Error 2
FAILED ''

ABORTED Failed to build Netdata.

]]>