Torjus Håkestad 4d88644417
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled
Configure tempo storage
2025-05-24 21:55:08 +02:00

29 lines
473 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";
};
};
};
};
};
}