podman: added prometheus exporter

This commit is contained in:
Tigor Hutasuhut 2024-09-10 22:53:42 +07:00
parent 61bbceb2cf
commit 73280b0a7b
2 changed files with 40 additions and 0 deletions

View file

@ -57,5 +57,7 @@ in
./suwayomi.nix
./ytptube.nix
./valheim.nix
./metrics.nix
];
}

38
system/podman/metrics.nix Normal file
View file

@ -0,0 +1,38 @@
{ config, lib, ... }:
let
ip = "10.88.222.222";
in
{
virtualisation.oci-containers.containers."metrics" = {
image = "quay.io/navidys/prometheus-podman-exporter";
hostname = "metrics";
autoStart = true;
user = "0:0";
environment = {
TZ = "Asia/Jakarta";
CONTAINER_HOST = "unix:///run/podman/podman.sock";
};
volumes = [
"/run/podman/podman.sock:/run/podman/podman.sock"
];
extraOptions = [
"--network=podman"
"--ip=${ip}"
"--security-opt=label=disable"
];
labels = {
"io.containers.autoupdate" = "registry";
};
};
environment.etc."alloy/config.alloy".text = lib.mkIf config.services.alloy.enable /*hcl*/ ''
prometheus.scrape "podman" {
targets = [{__address__ = "${ip}:9882"}]
job_name = "podman"
forward_to = [prometheus.remote_write.mimir.receiver]
}
'';
}