snowflake/modules/prometheus.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2023-06-19 12:47:07 -04:00
_: {
2024-02-08 12:04:15 -05:00
networking.firewall.allowedTCPPorts = [ 9090 ];
2023-06-19 12:47:07 -04:00
services.prometheus = {
enable = true;
globalConfig = {
scrape_interval = "15s";
evaluation_interval = "15s";
};
2023-06-19 12:47:07 -04:00
scrapeConfigs = [
{
job_name = "prometheus";
2024-02-08 12:04:15 -05:00
static_configs = [ { targets = [ "localhost:9090" ]; } ];
2023-06-19 12:47:07 -04:00
}
{
job_name = "node";
2024-02-08 12:04:15 -05:00
static_configs = [ { targets = [ "localhost:9100" ]; } ];
2023-06-19 12:47:07 -04:00
}
2023-10-17 00:47:58 -04:00
{
job_name = "traefik";
2024-02-08 12:04:15 -05:00
static_configs = [ { targets = [ "100.104.42.96:8080" ]; } ];
2023-10-17 00:47:58 -04:00
}
{
job_name = "postgres";
2024-02-08 12:04:15 -05:00
static_configs = [ { targets = [ "100.94.214.100:9003" ]; } ];
}
2023-11-30 22:28:36 -05:00
{
job_name = "blocky";
2024-02-08 12:04:15 -05:00
static_configs = [ { targets = [ "100.73.192.45:4000" ]; } ];
2023-11-30 22:28:36 -05:00
}
{
job_name = "redis_exporter";
2024-02-08 12:04:15 -05:00
static_configs = [ { targets = [ "100.94.214.100:9002" ]; } ];
}
2023-06-19 12:47:07 -04:00
];
exporters = {
node = {
enable = true;
2024-02-08 12:04:15 -05:00
enabledCollectors = [
"systemd"
"cpu"
];
2023-06-19 12:47:07 -04:00
};
};
};
}