Add tempo 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 21:29:05 +02:00
parent 30b6f86eee
commit 486320b0ec
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 20 additions and 0 deletions

View File

@ -8,5 +8,6 @@
./alerttonotify.nix
./pyroscope.nix
./alloy.nix
./tempo.nix
];
}

View File

@ -0,0 +1,19 @@
{ ... }:
{
services.tempo = {
enable = true;
settings = {
server = {
http_listen_port = 3200;
};
distributor = {
receivers = {
otlp = {
grpc = { };
http = { };
};
};
};
};
};
}