hainich/monitoring: init prometheus

keep-around/0d362a17fc70adb6b46254ad3bf6c05678ab391b
hexchen 2021-01-14 17:37:24 +00:00
parent 323b4edf1c
commit 0d362a17fc
2 changed files with 43 additions and 0 deletions

View File

@ -17,6 +17,7 @@
./services/gitlab-runner.nix
./services/lantifa.nix
./services/syncthing.nix
./services/monitoring.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;

View File

@ -0,0 +1,42 @@
{ config, lib, pkgs, ... }:
{
services.prometheus = {
enable = true;
webExternalUrl = "https://stats.hacc.space";
exporters = {
dovecot = {
enable = true;
scopes = [ "user" "global" ];
socketPath = "/var/run/dovecot2/old-stats";
};
nginx.enable = true;
node.enable = true;
postfix = {
enable = true;
systemd.enable = true;
};
rspamd.enable = true;
};
scrapeConfigs = (lib.mapAttrsToList (name: val:
{
job_name = "${name}-${config.networking.hostName}";
static_configs = [{
targets = [ "localhost:${toString val.port}" ];
labels.host = config.networking.hostName;
}];
}
) (lib.filterAttrs (_: val: val.enable) config.services.prometheus.exporters));
};
services.dovecot2.extraConfig = ''
mail_plugins = $mail_plugins old_stats
service old-stats {
unix_listener old-stats {
user = dovecot-exporter
group = dovecot-exporter
}
}
'';
services.nginx.statusPage = true;
}