add grafana and prometheus

This commit is contained in:
Rouven Seifert 2023-10-29 11:58:56 +01:00
parent 78b1a5761c
commit 862e8ecfb2
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
8 changed files with 94 additions and 20 deletions

View file

@ -7,7 +7,8 @@
# ./modules/adguard
./modules/networks
# ./modules/backup
# ./modules/hydra
./modules/grafana
./modules/prometheus
./modules/matrix
./modules/nextcloud
./modules/seafile

View file

@ -25,13 +25,10 @@
];
encryption_passcommand = "${pkgs.coreutils}/bin/cat ${config.sops.secrets."borg/passphrase".path}";
compression = "lz4";
retention = {
keep_daily = 7;
keep_weekly = 4;
keep_monthly = 12;
keep_yearly = 3;
};
keep_daily = 7;
keep_weekly = 4;
keep_monthly = 12;
keep_yearly = 3;
};
};
}

View file

@ -0,0 +1,44 @@
{ config, ... }:
let
domain = "monitoring.${config.networking.domain}";
in
{
services.grafana = {
enable = true;
settings = {
server = {
inherit domain;
http_addr = "127.0.0.1";
http_port = 3000;
};
database = {
type = "postgres";
user = "grafana";
host = "/run/postgresql";
};
};
};
services.postgresql = {
enable = true;
ensureUsers = [
{
name = "grafana";
ensurePermissions = {
"DATABASE grafana" = "ALL PRIVILEGES";
};
}
];
ensureDatabases = [ "grafana" ];
};
services.nginx.virtualHosts."${domain}" = {
addSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://${toString config.services.grafana.settings.server.http_addr}:${toString config.services.grafana.settings.server.http_port}/";
proxyWebsockets = true;
};
};
}

View file

@ -0,0 +1,35 @@
{ config, ... }:
let
exportersConfig = config.services.prometheus.exporters;
in
{
services.prometheus = {
enable = true;
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
};
postgres.enable = true;
};
scrapeConfigs = [
{
job_name = "node";
static_configs = [
{
targets = [ "127.0.0.1:${toString exportersConfig.node.port}" ];
}
];
}
{
job_name = "postgres";
static_configs = [
{
targets = [ "127.0.0.1:${toString exportersConfig.postgres.port}" ];
}
];
}
];
};
}

View file

@ -1,6 +1,6 @@
{ config, ... }:
let
domain = "monitoring.${config.networking.domain}";
domain = "uptime.${config.networking.domain}";
in
{
services.uptime-kuma = {