Torjus Håkestad b75df7578f
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled
Configure tempo wal storage
2025-05-24 22:03:56 +02:00

32 lines
545 B
Nix

{ ... }:
{
services.tempo = {
enable = true;
settings = {
server = {
http_listen_port = 3200;
grpc_listen_port = 3201;
};
distributor = {
receivers = {
otlp = {
grpc = { };
http = { };
};
};
};
storage = {
trace = {
backend = "local";
local = {
path = "/var/lib/tempo";
};
wal = {
path = "/var/lib/tempo/wal";
};
};
};
};
};
}