Skip to content

Commit

Permalink
grpc to http/protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
Simplychee committed Dec 3, 2024
1 parent 414cc6c commit b12c0d9
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/_include/tracing-shipping/collector-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
4 changes: 2 additions & 2 deletions docs/_include/tracing-shipping/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Create a file `config.yaml` with the following content:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -106,7 +106,7 @@ Here is an example configuration file:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
http:
exporters:
Expand Down
4 changes: 2 additions & 2 deletions docs/_include/tracing-shipping/otel-troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The collector may not have the correct endpoint configured for the receiver.
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -60,7 +60,7 @@ The correct endpoints are:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "<<COLLECTOR-URL>>:4317"
http:
endpoint: "<<COLLECTOR-URL>>:4318/v1/traces"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/AWS/aws-ecs-fargate.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ receivers:
transport: udp
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/AWS/aws-lambda-extension-go.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The `collector.yaml` file will have the following configuration:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/AWS/aws-lambda-extension-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The `collector.yaml` file will have the following configuration:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/App360/App360.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ After setting up the collector, create a configuration file `config.yaml` with t
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
6 changes: 3 additions & 3 deletions docs/shipping/Code/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ Add `collector.yaml` at the root of your lambda function:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
http:
exporters:
Expand Down Expand Up @@ -1150,7 +1150,7 @@ Create a `config.yaml` file with the following content:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -1240,7 +1240,7 @@ An example configuration file:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
http:
exporters:
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/Other/jaeger.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ receivers:
endpoint: "0.0.0.0:6831"
thrift_binary:
endpoint: "0.0.0.0:6832"
grpc:
http/protobuf:
endpoint: "0.0.0.0:14250"
thrift_http:
endpoint: "0.0.0.0:14268"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ If the collector is installed, it may not have the correct endpoint configured f
endpoint: "0.0.0.0:6831"
thrift_binary:
endpoint: "0.0.0.0:6832"
grpc:
http/protobuf:
endpoint: "0.0.0.0:14250"
thrift_http:
endpoint: "0.0.0.0:14268"
opencensus:
endpoint: "0.0.0.0:55678"
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -90,15 +90,15 @@ The correct endpoints are:
endpoint: "<<COLLECTOR-URL>>:6831"
thrift_binary:
endpoint: "<<COLLECTOR-URL>>:6832"
grpc:
http/protobuf:
endpoint: "<<COLLECTOR-URL>>:14250"
thrift_http:
endpoint: "<<COLLECTOR-URL>>:14268"
opencensus:
endpoint: "<<COLLECTOR-URL>>:55678"
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "<<COLLECTOR-URL>>:4317"
http:
endpoint: "<<COLLECTOR-URL>>:4318/v1/traces"
Expand Down

0 comments on commit b12c0d9

Please sign in to comment.