1
0
Fork 0

Services: enable parent/child config for Netdata

This commit is contained in:
Aires 2024-08-23 14:16:18 -04:00
parent 6132528eee
commit e49d13d8e8
4 changed files with 94 additions and 34 deletions

View file

@ -173,10 +173,12 @@ in
netdata = {
enable = true;
domain = config.secrets.networking.primaryDomain;
type = "parent";
url = config.secrets.services.netdata.url;
auth = {
user = config.users.users.aires.name;
password = config.secrets.services.netdata.password;
apiKey = config.secrets.services.netdata.apiKey;
};
};
nginx = {

View file

@ -66,6 +66,12 @@ in
onCalendar = "daily";
user = config.users.users.aires.name;
};
netdata = {
enable = true;
type = "child";
url = config.secrets.services.netdata.url;
auth.apiKey = config.secrets.services.netdata.apiKey;
};
# Install virtual machine management tools
virtualization = {
enable = true;

View file

@ -1,6 +1,5 @@
{
pkgs,
pkgs-unstable,
config,
lib,
...
@ -23,6 +22,11 @@ in
type = lib.types.str;
description = "Password for basic auth.";
};
apiKey = lib.mkOption {
default = "";
type = lib.types.str;
description = "API key for streaming data from a child to a parent.";
};
};
domain = lib.mkOption {
default = "";
@ -30,6 +34,15 @@ in
description = "The root domain that Netdata will be hosted on.";
example = "example.com";
};
type = lib.mkOption {
default = "parent";
type = lib.types.enum [
"parent"
"child"
];
description = "Whether this is a parent (default: includes web UI) or child (no web UI - streaming only).";
example = "child";
};
url = lib.mkOption {
default = "";
type = lib.types.str;
@ -39,8 +52,15 @@ in
};
};
config = lib.mkIf cfg.enable {
config = lib.mkMerge [
(lib.mkIf cfg.enable {
services.netdata = {
enable = true;
package = pkgs.unstable.netdataCloud;
enableAnalyticsReporting = false;
};
})
(lib.mkIf (cfg.type == "parent") {
services = {
nginx.virtualHosts."${cfg.url}" = {
useACMEHost = cfg.domain;
@ -63,18 +83,50 @@ in
};
netdata = {
enable = true;
package = pkgs-unstable.netdataCloud;
enableAnalyticsReporting = false;
configDir = {
# Enable nvidia-smi: https://nixos.wiki/wiki/Netdata#nvidia-smi
"python.d.conf" = pkgs.writeText "python.d.conf" ''
nvidia_smi: yes
'';
# Allow incoming streams
"stream.conf" = pkgs.writeText "stream.conf" ''
[${config.secrets.services.netdata.apiKey}]
enabled = yes
default history = 3600
default memory mode = dbengine
health enabled by default = auto
allow streaming from = *
'';
};
};
};
systemd.services.nginx.wants = [ config.systemd.services.netdata.name ];
})
(lib.mkIf (cfg.type == "child") {
services.netdata = {
# Disable web UI
config = {
global = {
"memory mode" = "none";
};
web = {
mode = "none";
"accept a streaming request every seconds" = 0;
};
};
# Set up streaming
configDir = {
"stream.conf" = pkgs.writeText "stream.conf" ''
[stream]
enabled = yes
destination = ${cfg.url}:SSL
api key = ${cfg.auth.apiKey}
[${cfg.auth.apiKey}]
enabled = yes
'';
};
};
})
];
}

@ -1 +1 @@
Subproject commit d57c296dab0ec1e7c6f28c7741d9a591b35117da
Subproject commit 56ccf5bf3f4d8687dc22c390cdafe20c08a7e549