2024-04-14 01:06:22 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
nodes,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2024-02-19 17:37:57 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
host = "prometheus.dgnum.eu";
|
|
|
|
port = 9091;
|
2024-04-14 01:06:22 +02:00
|
|
|
|
|
|
|
nodeExporterConfigs = lib.flatten (
|
|
|
|
lib.mapAttrsToList (
|
|
|
|
node:
|
|
|
|
{ config, ... }:
|
|
|
|
lib.optional config.dgn-node-monitoring.enable {
|
|
|
|
targets = [ "${node}.dgnum:${builtins.toString config.dgn-node-monitoring.port}" ];
|
|
|
|
labels = {
|
|
|
|
host = node;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
) nodes
|
|
|
|
);
|
2024-02-19 17:37:57 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
services.prometheus = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
inherit port;
|
|
|
|
|
|
|
|
checkConfig = "syntax-only";
|
|
|
|
enableReload = true;
|
|
|
|
|
|
|
|
listenAddress = "127.0.0.1";
|
|
|
|
|
|
|
|
webConfigFile = config.age.secrets."prometheus-web_config_file".path;
|
|
|
|
|
|
|
|
webExternalUrl = "https://${host}";
|
|
|
|
|
2024-04-16 18:57:18 +02:00
|
|
|
retentionTime = "1y";
|
2024-04-14 01:08:49 +02:00
|
|
|
|
|
|
|
extraFlags = [ "--storage.tsdb.retention.size=20GB" ];
|
|
|
|
|
|
|
|
globalConfig = {
|
|
|
|
scrape_interval = "15s"; # if you change this settings, please do it in grafana also
|
|
|
|
};
|
|
|
|
|
2024-02-19 17:37:57 +01:00
|
|
|
scrapeConfigs = [
|
|
|
|
{
|
|
|
|
job_name = "prometheus";
|
|
|
|
static_configs = [ { targets = [ "localhost:9090" ]; } ];
|
|
|
|
}
|
2024-04-14 01:06:22 +02:00
|
|
|
{
|
|
|
|
job_name = "node_exporter";
|
|
|
|
static_configs = nodeExporterConfigs;
|
|
|
|
}
|
2024-04-14 01:09:28 +02:00
|
|
|
{
|
|
|
|
job_name = "uptime_kuma";
|
|
|
|
scheme = "https";
|
|
|
|
static_configs = [ { targets = [ "status.dgnum.eu" ]; } ];
|
|
|
|
basic_auth = {
|
|
|
|
username = "prometheus";
|
|
|
|
password_file = config.age.secrets."prometheus-uptime-kuma-apikey".path;
|
|
|
|
};
|
|
|
|
}
|
2024-04-19 23:30:26 +02:00
|
|
|
{
|
|
|
|
job_name = "hyp01_ups";
|
2024-04-22 08:28:40 +02:00
|
|
|
metrics_path = "/ups_metrics";
|
2024-04-19 23:30:26 +02:00
|
|
|
static_configs = [ { targets = [ "100.80.255.180:9199" ]; } ];
|
|
|
|
}
|
2024-02-19 17:37:57 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx.virtualHosts.${host} = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://127.0.0.1:${builtins.toString port}";
|
|
|
|
proxyWebsockets = true;
|
|
|
|
recommendedProxySettings = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
age-secrets.autoMatch = [ "prometheus" ];
|
|
|
|
}
|