nix-config/features/prometheus.nix

30 lines
626 B
Nix
Raw Normal View History

{ config, ... }:
{
services.prometheus = {
enable = true;
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = 9002;
};
};
scrapeConfigs = [
{
job_name = "synapse";
scrape_interval = "15s";
metrics_path = "/_synapse/metrics";
2024-07-22 11:27:52 +02:00
static_configs = [ { targets = [ "localhost:9000" ]; } ];
2024-07-22 11:05:06 +02:00
}
{
job_name = "homelab-stats";
static_configs = [
{ targets = [ "localhost:${builtins.toString config.services.prometheus.exporters.node.port}" ]; }
];
}
];
};
}