Fix job names of Prometheus

This commit is contained in:
Pim Kunis 2025-03-23 11:02:40 +01:00
parent b5d45a974e
commit 35714c3d08

View file

@ -12,42 +12,39 @@
services.prometheus = {
enable = true;
scrapeConfigs = (
let
generated = lib.pipe nodes [
(lib.filterAttrs (name: node: node.config.services.prometheus.exporters.node.enable))
(lib.attrsets.mapAttrsToList
(name: node: {
job_name = name;
static_configs = [
{
targets = ["${node.config.networking.fqdn}:${toString node.config.services.prometheus.exporters.node.port}"];
}
];
}))
scrapeConfigs = let
node = {
job_name = "node";
static_configs = [
{
targets = lib.pipe nodes [
(lib.filterAttrs (_name: node: node.config.services.prometheus.exporters.node.enable))
(lib.attrsets.mapAttrsToList
(_name: node: "${node.config.networking.fqdn}:${toString node.config.services.prometheus.exporters.node.port}"))
];
}
];
};
pikvm = {
job_name = "pikvm";
metrics_path = "/api/export/prometheus/metrics";
scheme = "https";
tls_config.insecure_skip_verify = true;
pikvm = {
job_name = "pikvm";
metrics_path = "/api/export/prometheus/metrics";
scheme = "https";
tls_config.insecure_skip_verify = true;
# We don't care about security here, it's behind a VPN.
basic_auth = {
username = "admin";
password = "admin";
};
static_configs = [
{
targets = ["pikvm.dmz"];
}
];
# We don't care about security here, it's behind a VPN.
basic_auth = {
username = "admin";
password = "admin";
};
in
generated ++ [pikvm]
);
static_configs = [
{
targets = ["pikvm.dmz"];
}
];
};
in [node pikvm];
};
services.nginx = {