2024-01-10 04:11:11 +00:00
|
|
|
# Netdata is an out-of-the-box monitoring tool that exposes many different
|
|
|
|
# metrics. Not currently in use, in favor of VictoriaMetrics and Grafana.
|
|
|
|
|
2023-02-21 01:45:56 +00:00
|
|
|
{ config, lib, ... }: {
|
2022-10-10 18:11:08 +00:00
|
|
|
|
2022-12-21 21:18:03 +00:00
|
|
|
options.netdata.enable = lib.mkEnableOption "Netdata metrics.";
|
|
|
|
|
|
|
|
config = lib.mkIf config.netdata.enable {
|
2022-10-10 18:11:08 +00:00
|
|
|
|
2022-10-10 19:22:39 +00:00
|
|
|
services.netdata = {
|
|
|
|
enable = true;
|
2022-10-10 18:11:08 +00:00
|
|
|
|
2022-10-10 19:22:39 +00:00
|
|
|
# Disable local dashboard (unsecured)
|
|
|
|
config = { web.mode = "none"; };
|
|
|
|
};
|
2022-10-10 18:11:08 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|