Netdata: Difference between revisions
imported>Beardedtek →samba: replace html code " with " |
Add instructions how to take newer web UI into use |
||
| Line 8: | Line 8: | ||
*When adding new node in the web interface you get a token, write that token to /var/lib/netdata/cloud.d/token | *When adding new node in the web interface you get a token, write that token to /var/lib/netdata/cloud.d/token | ||
*As root run <code>nix-shell -p netdata --run "netdata-claim.sh"</code> | *As root run <code>nix-shell -p netdata --run "netdata-claim.sh"</code> | ||
== Newer web UI == | |||
Netdata comes with an old unmaintained web UI that is accesible at port <code>19999</code>. Netdata Inc. will not fix any bugs in the old UI and it may to become more and more broken as time goes on. There is, however, a newer maintained, but unfree proprietary web UI that can be optionally enabled to replace the old UI. To take it into use, override netdata's package:<syntaxhighlight lang="nix"> | |||
services.netdata.package = pkgs.netdata.override { | |||
withCloudUi = true; | |||
}; | |||
</syntaxhighlight>In addition, you need to allow unfree packages. | |||
== Streaming node setup == | == Streaming node setup == | ||