{ config, ... }: { services.prometheus = { enable = true; port = 6999; exporters = { node = { enable = true; enabledCollectors = [ "systemd" ]; port = 6998; }; bird = { enable = true; }; }; scrapeConfigs = [ { job_name = "prefect"; static_configs = [ { targets = [ "127.0.0.1:${toString config.services.prometheus.exporters.node.port}" ]; } ]; } { job_name = "caddy"; static_configs = [ { targets = [ "127.0.0.1:6899" ]; } ]; } { job_name = "bird"; static_configs = [ { targets = [ "127.0.0.1:9324" ]; } ]; } { job_name = "prometheus"; static_configs = [ { targets = [ "127.0.0.1:6999" ]; } ]; } ]; }; }