Skip to content

Commit ee0633b

Browse files
committed
fix(backend): Fix tempo configuration
1 parent e6bf50c commit ee0633b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

backend/.local-resources/tempo/tempo.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ distributor:
66
jaeger: # the receives all come from the OpenTelemetry collector. more configuration information can
77
protocols: # be found there: https://github.com/open-telemetry/opentelemetry-collector/tree/main/receiver
88
thrift_http: #
9-
endpoint: "tempo:14268" # for a production deployment you should only enable the receivers you need!
9+
endpoint: "localhost:14268" # for a production deployment you should only enable the receivers you need!
1010
grpc:
11-
endpoint: "tempo:14250"
11+
endpoint: "localhost:14250"
1212
thrift_binary:
13-
endpoint: "tempo:6832"
13+
endpoint: "localhost:6832"
1414
thrift_compact:
15-
endpoint: "tempo:6831"
15+
endpoint: "localhost:6831"
1616
zipkin:
17-
endpoint: "tempo:9411"
17+
endpoint: "localhost:9411"
1818
otlp:
1919
protocols:
2020
grpc:
21-
endpoint: "tempo:4317"
21+
endpoint: "localhost:4317"
2222
http:
23-
endpoint: "tempo:4318"
23+
endpoint: "localhost:4318"
2424
opencensus:
25-
endpoint: "tempo:55678"
25+
endpoint: "localhost:55678"
2626

2727
ingester:
2828
max_block_duration: 5m # cut the headblock when this much time passes. this is being set for demo purposes and should probably be left alone normally

0 commit comments

Comments
 (0)