1
0
Fork 0
selfhostblocks/modules/monitoring.nix

135 lines
3.4 KiB
Nix
Raw Normal View History

2023-07-01 19:12:36 +02:00
{ config, pkgs, lib, ... }:
let
cfg = config.shb.monitoring;
fqdn = "${cfg.subdomain}.${cfg.domain}";
2023-07-01 19:12:36 +02:00
in
{
options.shb.monitoring = {
enable = lib.mkEnableOption "selfhostblocks.monitoring";
# sopsFile = lib.mkOption {
# type = lib.types.path;
# description = "Sops file location";
# example = "secrets/monitoring.yaml";
# };
subdomain = lib.mkOption {
type = lib.types.str;
description = "Subdomain under which home-assistant will be served.";
example = "grafana";
};
domain = lib.mkOption {
type = lib.types.str;
description = "domain under which home-assistant will be served.";
example = "mydomain.com";
};
2023-07-01 19:12:36 +02:00
};
config = lib.mkIf cfg.enable {
services.postgresql = {
enable = true;
ensureDatabases = [ "grafana" ];
ensureUsers = [
{
name = "grafana";
ensurePermissions = {
"DATABASE grafana" = "ALL PRIVILEGES";
};
ensureClauses = {
"login" = true;
};
}
];
};
services.grafana = {
enable = true;
settings = {
database = {
host = "/run/postgresql";
user = "grafana";
name = "grafana";
type = "postgres";
# Uses peer auth for local users, so we don't need a password.
# Here's the syntax anyway for future refence:
# password = "$__file{/run/secrets/homeassistant/dbpass}";
};
2023-07-01 19:12:36 +02:00
server = {
http_addr = "127.0.0.1";
http_port = 3000;
domain = fqdn;
root_url = "https://${fqdn}";
2023-07-01 19:12:36 +02:00
};
};
};
services.prometheus = {
enable = true;
port = 3001;
};
services.nginx = {
enable = true;
# recommendedProxySettings = true;
virtualHosts.${fqdn} = {
forceSSL = true;
sslCertificate = "/var/lib/acme/${cfg.domain}/cert.pem";
sslCertificateKey = "/var/lib/acme/${cfg.domain}/key.pem";
locations."/" = {
extraConfig = ''
proxy_set_header Host $host;
'';
proxyPass = "http://${toString config.services.grafana.settings.server.http_addr}:${toString config.services.grafana.settings.server.http_port}/";
proxyWebsockets = true;
2023-07-01 19:12:36 +02:00
};
};
};
2023-07-30 07:14:38 +02:00
services.prometheus.scrapeConfigs = [
{
job_name = "node";
static_configs = [
{
targets = ["127.0.0.1:9115"];
}
];
}
] ++ (lib.lists.optional config.services.nginx.enable {
job_name = "nginx";
static_configs = [
2023-07-01 19:12:36 +02:00
{
targets = ["127.0.0.1:9113"];
2023-07-01 19:12:36 +02:00
}
];
});
services.prometheus.exporters.nginx = lib.mkIf config.services.nginx.enable {
enable = true;
port = 9113;
listenAddress = "127.0.0.1";
scrapeUri = "http://localhost:80/nginx_status";
2023-07-01 19:12:36 +02:00
};
2023-07-30 07:14:38 +02:00
services.prometheus.exporters.node = {
enable = true;
enabledCollectors = ["systemd"];
port = 9115;
listenAddress = "127.0.0.1";
};
services.nginx.statusPage = lib.mkDefault config.services.nginx.enable;
2023-07-01 19:12:36 +02:00
# sops.secrets."grafana" = {
# inherit (cfg) sopsFile;
# mode = "0440";
# owner = "grafana";
# group = "grafana";
# # path = "${config.services.home-assistant.configDir}/secrets.yaml";
# restartUnits = [ "grafana.service" ];
# };
};
}