nixos-config/config/services/tempo.nix

27 lines
599 B
Nix
Raw Normal View History

2023-12-10 10:27:30 +00:00
{lib, ...}: {
services.tempo = {
enable = true;
settings = {
server = {
http_listen_address = "0.0.0.0";
http_listen_port = 2144;
graceful_shutdown_timeout = "10s";
};
distrubtor.receiver = {
otlp.protocols = {
grpc = {};
http = {};
};
jaeger.protocols = {
thrift_http = {};
grpc = {};
thrift_binary = {};
thrift_compact = {};
};
};
storage.trace.backend = "local";
};
};
services.opentelemetry-collector.enable = lib.mkForce false;
}