mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
20 lines
433 B
Nix
20 lines
433 B
Nix
# Netdata is an out-of-the-box monitoring tool that exposes many different
|
|
# metrics. Not currently in use, in favor of VictoriaMetrics and Grafana.
|
|
|
|
{ config, lib, ... }: {
|
|
|
|
options.netdata.enable = lib.mkEnableOption "Netdata metrics.";
|
|
|
|
config = lib.mkIf config.netdata.enable {
|
|
|
|
services.netdata = {
|
|
enable = true;
|
|
|
|
# Disable local dashboard (unsecured)
|
|
config = { web.mode = "none"; };
|
|
};
|
|
|
|
};
|
|
|
|
}
|