cluster/services/monitoring: fix tempo, add zipkin endpoint
This commit is contained in:
parent
3c7cb33820
commit
83b9ed9c09
2 changed files with 11 additions and 4 deletions
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue