Add pyroscope container to monitoring
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled

This commit is contained in:
2025-05-24 12:00:02 +02:00
parent 2a46da3761
commit 1988b36f03
2 changed files with 9 additions and 0 deletions

View File

@@ -6,5 +6,6 @@
./prometheus.nix
./pve.nix
./alerttonotify.nix
./pyroscope.nix
];
}

View File

@@ -0,0 +1,8 @@
{ ... }:
{
virtualisation.oci-containers.containers.pyroscope = {
pull = "missing";
image = "grafana/pyroscope:latest";
ports = "4040:4040";
};
}