diff --git a/cmd/jaeger/internal/all-in-one.yaml b/cmd/jaeger/internal/all-in-one.yaml index 5417b95d133..9a534d19fff 100644 --- a/cmd/jaeger/internal/all-in-one.yaml +++ b/cmd/jaeger/internal/all-in-one.yaml @@ -35,7 +35,9 @@ extensions: # sampling_store: some_store # initial_sampling_probability: 0.1 http: + endpoint: "0.0.0.0:5778" grpc: + endpoint: "0.0.0.0:5779" healthcheckv2: use_v2: true @@ -50,16 +52,19 @@ receivers: otlp: protocols: grpc: + endpoint: "0.0.0.0:4317" http: + endpoint: "0.0.0.0:4318" jaeger: protocols: grpc: - thrift_binary: - thrift_compact: + endpoint: "0.0.0.0:14250" thrift_http: + endpoint: "0.0.0.0:14268" zipkin: + endpoint: "0.0.0.0:9411" processors: batch: diff --git a/examples/hotrod/docker-compose-v2.yml b/examples/hotrod/docker-compose-v2.yml index a4a82fac049..3e39faad702 100644 --- a/examples/hotrod/docker-compose-v2.yml +++ b/examples/hotrod/docker-compose-v2.yml @@ -4,9 +4,6 @@ services: jaeger: image: ${REGISTRY:-}jaegertracing/jaeger:${JAEGER_VERSION:-latest} - command: - - --set=receivers.otlp.protocols.grpc.endpoint="0.0.0.0:4317" - - --set=receivers.otlp.protocols.http.endpoint="0.0.0.0:4318" ports: - "16686:16686" - "4317:4317"