Add missing prometheus config
Some checks are pending
/ Build Nix targets (push) Waiting to run

This commit is contained in:
Théo Barnouin 2025-06-05 14:59:02 +02:00
parent a7f93efa33
commit 59e1e7216d

View file

@ -1,7 +1,6 @@
{ {
lib, lib,
config, config,
pkgs,
... ...
}: let }: let
cfg = config.services.vm_grafana; cfg = config.services.vm_grafana;
@ -171,6 +170,22 @@ in {
} }
]; ];
} }
{
job_name = "qbittorrent-vpn";
static_configs = [
{
targets = ["192.168.1.25:9002"];
}
];
}
{
job_name = "nixarr";
static_configs = [
{
targets = ["192.168.1.24:9002"];
}
];
}
{ {
job_name = "vaultwarden"; job_name = "vaultwarden";
static_configs = [ static_configs = [
@ -259,6 +274,24 @@ in {
} }
]; ];
} }
{
job_name = "crowdsec_qbittorrent";
metrics_path = "/metrics";
static_configs = [
{
targets = ["192.168.1.25:6060"];
}
];
}
{
job_name = "crowdsec_nixarr";
metrics_path = "/metrics";
static_configs = [
{
targets = ["192.168.1.24:6060"];
}
];
}
{ {
job_name = "crowdsec_vaultwarden"; job_name = "crowdsec_vaultwarden";
metrics_path = "/metrics"; metrics_path = "/metrics";