66 lines
1.5 KiB
Nix
66 lines
1.5 KiB
Nix
{
|
|
nodes,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
with lib; let
|
|
name = "prometheus";
|
|
cfg = config.services.skynet."${name}";
|
|
in {
|
|
imports = [];
|
|
|
|
options.services.skynet."${name}" = {
|
|
server = {
|
|
enable = mkEnableOption "Prometheus Server";
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 9001;
|
|
};
|
|
|
|
other_nodes = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
description = ''
|
|
To add other nodes outside of nix, specify ip and port that server should listen to here
|
|
'';
|
|
};
|
|
};
|
|
|
|
port_collecter = mkOption {
|
|
type = types.port;
|
|
default = 9002;
|
|
};
|
|
};
|
|
|
|
config = mkMerge [
|
|
{
|
|
services.prometheus.exporters.node = {
|
|
enable = true;
|
|
# most collectors are on by default see https://github.com/prometheus/node_exporter for more options
|
|
enabledCollectors = ["systemd"];
|
|
port = cfg.port_collecter;
|
|
};
|
|
|
|
# make sure the port is open
|
|
networking.firewall.allowedTCPPorts = [cfg.port_collecter];
|
|
}
|
|
(mkIf cfg.server.enable {
|
|
services.prometheus = {
|
|
enable = true;
|
|
port = cfg.server.port;
|
|
scrapeConfigs = [
|
|
{
|
|
job_name = "node_exporter";
|
|
static_configs = [
|
|
{
|
|
targets = (lib.attrsets.mapAttrsToList (key: value: "${value.config.deployment.targetHost}:${toString cfg.port_collecter}") nodes) ++ cfg.server.other_nodes;
|
|
}
|
|
];
|
|
}
|
|
];
|
|
};
|
|
})
|
|
];
|
|
}
|