跳到主要内容

Netdata

如何使用 Netdata 的远程端口?

Netdata 在 QuickBox Lite 中默认以 unix socket 连接,因此如果你需要使用 TCP 端口以进行集中监控,那么需要:

  1. 删除默认配置中

    /etc/netdata/netdata.conf
    [web]
    bind to = unix:/run/netdata/netdata.sock
  2. 重启 Netdata 进程:

    systemctl restart netdata
  3. 修改 Nginx 配置文件

    /etc/nginx/apps/netdata.conf
    proxy_pass http://unix:/run/netdata/netdata.sock:/$ndpath$is_args$args;

    修改为

    /etc/nginx/apps/netdata.conf
    proxy_pass http://127.0.0.1:19999/$ndpath$is_args$args;
  4. 重启 Nginx

    nginx -t
    nginx -s reload

如何连接到 Netdata Cloud?

有两个方法可以连接你的 Agent :

  1. 使用 Claiming script

    netdata-claim.sh -token=MYTOKEN1234567
  2. 使用 Netdata Agent 命令行

    /usr/sbin/netdata -D -W "claim -token=MYTOKEN1234567"

你可以从 Netdata Cloud 的仪表盘找到 token。连接到云端需要以 Root 权限运行上述指令。