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

This commit is contained in:
Torjus Håkestad 2025-05-24 12:00:02 +02:00
parent 2a46da3761
commit 1988b36f03
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 9 additions and 0 deletions

View File

@ -6,5 +6,6 @@
./prometheus.nix ./prometheus.nix
./pve.nix ./pve.nix
./alerttonotify.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";
};
}