cluster/services/monitoring: fix tempo, add zipkin endpoint

This commit is contained in:
Max Headroom 2023-11-04 03:59:17 +01:00
parent 3c7cb33820
commit 83b9ed9c09
2 changed files with 11 additions and 4 deletions

View file

@ -42,6 +42,10 @@ in
protocol = "http";
ipv4 = meshIpFor "server";
};
tempo-zipkin-http = {
protocol = "http";
ipv4 = meshIpFor "server";
};
};
hostLinks = lib.genAttrs config.services.monitoring.nodes.grafana (name: {
grafana = {

View file

@ -10,11 +10,14 @@ let
grpc_listen_address = links.tempo-grpc.ipv4;
grpc_listen_port = links.tempo-grpc.port;
};
distributor.receivers.otlp = {
protocols = {
http.endpoint = links.tempo-otlp-http.tuple;
grpc.endpoint = links.tempo-otlp-grpc.tuple;
distributor.receivers = {
otlp = {
protocols = {
http.endpoint = links.tempo-otlp-http.tuple;
grpc.endpoint = links.tempo-otlp-grpc.tuple;
};
};
zipkin.endpoint = links.tempo-zipkin-http.tuple;
};
querier.frontend_worker.frontend_address = links.tempo-grpc.tuple;
ingester = {